-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
54 lines (50 loc) · 1.19 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
[metadata]
name = segmentation-generic
version = 0.0.2
author = Scott Kinder
author_email = scott.kinder@cuanschutz.edu
description = Segmentation on images
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/QTIM/segmentation_generic
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU Affero General Public License v3
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.9
install_requires =
torch>=2.1.0
torchvision>=0.18.0
torchaudio>=2.1.0
numpy>=1.26.4
pandas>=2.2.2
matplotlib>=3.8.4
Pillow>=10.3.0
opencv-python>=4.9.0
transformers>=4.11.3
albumentations>=1.4.4
seaborn>=0.13.2
lightning>=2.2.4
wandb>=0.17.0
PyYAML>=6.0.1
monai>=1.3.1
zip_safe = False
[options.extras_require]
testing =
flake8>=7.0.0
tox>=4.15.0
pytest>=8.2.0
pytest-cov>=5.0.0
mypy>=1.10.0
[options.package_data]
; classification = py.typed
; classification/diagnostic = py.typed
; classification/image_quality = py.typed
; detection = py.typed
; pipeline = py.typed
segmentation = py.typed
segmentation/mask2former = py.typed
[flake8]
max-line-length = 160