forked from mlcommons/GaNDLF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
167 lines (150 loc) · 4.79 KB
/
setup.py
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#!/usr/bin/env python
"""The setup script."""
import sys, re, os
from setuptools import setup, find_packages
from setuptools.command.install import install
from setuptools.command.develop import develop
from setuptools.command.egg_info import egg_info
try:
with open("README.md") as readme_file:
readme = readme_file.read()
except Exception as error:
readme = "No README information found."
sys.stderr.write("Warning: Could not open '%s' due %s\n" % ("README.md", error))
class CustomInstallCommand(install):
def run(self):
install.run(self)
class CustomDevelopCommand(develop):
def run(self):
develop.run(self)
class CustomEggInfoCommand(egg_info):
def run(self):
egg_info.run(self)
try:
filepath = "GANDLF/version.py"
version_file = open(filepath)
(__version__,) = re.findall('__version__ = "(.*)"', version_file.read())
except Exception as error:
__version__ = "0.0.1"
sys.stderr.write("Warning: Could not open '%s' due %s\n" % (filepath, error))
# Handle cases where specific files need to be bundled into the final package as installed via PyPI
dockerfiles = [
item
for item in os.listdir(os.path.dirname(os.path.abspath(__file__)))
if (os.path.isfile(item) and item.startswith("Dockerfile-"))
]
entrypoint_files = [
item
for item in os.listdir(os.path.dirname(os.path.abspath(__file__)))
if (os.path.isfile(item) and item.startswith("gandlf_"))
]
setup_files = ["setup.py", ".dockerignore", "pyproject.toml", "MANIFEST.in"]
all_extra_files = dockerfiles + entrypoint_files + setup_files
all_extra_files_pathcorrected = [os.path.join("../", item) for item in all_extra_files]
# find_packages should only ever find these as subpackages of gandlf, not as top-level packages
# generate this dynamically?
# GANDLF.GANDLF is needed to prevent recursion madness in deployments
toplevel_package_excludes = [
"GANDLF.GANDLF",
"anonymize",
"cli",
"compute",
"data",
"grad_clipping",
"losses",
"metrics",
"models",
"optimizers",
"schedulers",
"utils",
]
requirements = [
"torch==1.13.1",
"black",
"numpy==1.25.0",
"scipy",
"SimpleITK!=2.0.*",
"SimpleITK!=2.2.1", # https://github.com/mlcommons/GaNDLF/issues/536
"torchvision",
"tqdm",
"torchio==0.18.75",
"pandas<2.0.0",
"scikit-learn>=0.23.2",
"scikit-image>=0.19.1",
"setuptools",
"seaborn",
"pyyaml",
"tiffslide",
"matplotlib",
"gdown",
"pytest",
"coverage",
"pytest-cov",
"psutil",
"medcam",
"opencv-python",
"torchmetrics==0.8.1",
"zarr==2.10.3",
"pydicom",
"onnx",
"torchinfo==1.7.0",
"segmentation-models-pytorch==0.3.2",
"ACSConv==0.1.1",
"docker",
"dicom-anonymizer",
"twine",
"zarr",
"keyring",
]
if __name__ == "__main__":
setup(
name="GANDLF",
version=__version__,
author="MLCommons",
author_email="[email protected]",
python_requires=">=3.9, <=3.10",
packages=find_packages(
where=os.path.dirname(os.path.abspath(__file__)),
exclude=toplevel_package_excludes,
),
cmdclass={
"install": CustomInstallCommand,
"develop": CustomDevelopCommand,
"egg_info": CustomEggInfoCommand,
},
scripts=[
"gandlf_run",
"gandlf_constructCSV",
"gandlf_collectStats",
"gandlf_patchMiner",
"gandlf_preprocess",
"gandlf_anonymizer",
"gandlf_verifyInstall",
"gandlf_configGenerator",
"gandlf_recoverConfig",
"gandlf_deploy",
"gandlf_optimizeModel",
"gandlf_generateMetrics",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
description=(
"PyTorch-based framework that handles segmentation/regression/classification using various DL architectures for medical imaging."
),
install_requires=requirements,
license="Apache-2.0",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
package_data={"GANDLF": all_extra_files_pathcorrected},
keywords="semantic, segmentation, regression, classification, data-augmentation, medical-imaging, clinical-workflows, deep-learning, pytorch",
zip_safe=False,
)