-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (53 loc) · 1.45 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[metadata]
name = actis
version = 0.1.0
description = Augmentation Consistency Training for Instance Segmentation
long_description = file: README.md
long_description_content_type = text/markdown
author = Lorenz Rumberger, Jan Philipp Albrecht, Jannick Franzen
maintainer = Lorenz Rumberger, Jan Philipp Albrecht, Jannick Franzen
license = MIT
license_files = LICENSE
platforms = any
# stages see https://martin-thoma.com/software-development-stages/
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Operating System :: POSIX
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities
keywords = machine learning, deep learning, segmentation, semi supervised learning, instance segmentation, semantic segmentation
project_urls =
Source=https://github.com/Kainmueller-Lab/ACTIS.git
Tracker=https://github.com/Kainmueller-Lab/ACTIS/issues
[options]
package_dir =
=src
include_package_data=False
packages = find_namespace:
install_requires =
torch~=2.0
torchvision
scikit-image
toml
h5py
matplotlib
tensorboard
segmentation-models-pytorch
zarr
mahotas
pandas
wandb
python_requires = ~=3.11
[options.packages.find]
where = src
[options.package_data]
YML = src/*.yml
CSV = src/*.csv
JSON = src/*.json
[options.entry_points]
console_scripts =
actis=actis.__main__:main
[flake8]
max-line-length = 120