forked from fepegar/torchio
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
129 lines (117 loc) · 2.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[metadata]
name = torchio
version = 0.19.1
description = Tools for medical image processing with PyTorch
long_description = file: README.md
long_description_content_type = text/markdown
url = http://torchio.rtfd.io
author = TorchIO contributors
maintainer = Fernando Perez-Garcia
maintainer_email = [email protected]
license = Apache-2.0
license_files = LICENSE
platforms = OS Independent
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Image Processing
Topic :: Scientific/Engineering :: Medical Science Apps.
Typing :: Typed
download_url = https://github.com/fepegar/torchio
keywords = medical image processing pytorch augmentation mri
project_urls =
Source = https://github.com/fepegar/torchio
Issue tracker = https://github.com/fepegar/torchio/issues
Documentation = http://torchio.rtfd.io
Release notes = https://github.com/fepegar/torchio/releases
[options]
install_requires =
Deprecated
SimpleITK!=2.0.*,!=2.1.1.1
humanize
nibabel
numpy>=1.15
scipy
torch>=1.1
tqdm
typer[all]
python_requires = >=3.8
include_package_data = True
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
tiohd=torchio.cli.print_info:app
tiotr=torchio.cli.apply_transform:app
torchio-transform=torchio.cli.apply_transform:app
[options.extras_require]
all =
%(csv)s
%(dev)s
%(doc)s
%(plot)s
csv =
pandas
dev =
%(plot)s
black
bump2version
coverage
flake8
mypy
parameterized
pre-commit
pytest
pytest-cov
tox
types-Deprecated
doc =
einops
furo
matplotlib
sphinx
sphinx-autobuild
sphinx-copybutton
sphinx-gallery
sphinxext-opengraph
plot =
matplotlib
[options.package_data]
torchio =
py.typed
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore =
N813,
E123,
W503,
E203,
E501
[mypy]
pretty = True
[mypy-duecredit.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-nibabel.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True