forked from wasserth/TotalSegmentator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (43 loc) · 1.6 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
from setuptools import setup, find_packages
setup(name='TotalSegmentator',
version='1.5.3',
description='Robust segmentation of 104 classes in CT images.',
long_description="See Readme.md on github for more details.",
url='https://github.com/wasserth/TotalSegmentator',
author='Jakob Wasserthal',
author_email='[email protected]',
python_requires='>=3.5',
license='Apache 2.0',
packages=find_packages(),
install_requires=[
'numpy',
'psutil',
# Any version <2.1.0 because of this issue:
# https://github.com/SimpleITK/SimpleITK/issues/1433
'SimpleITK',
'nibabel>=2.3.0',
'tqdm>=4.45.0',
'p_tqdm',
'xvfbwrapper',
'fury',
'batchgenerators>=0.21',
# This does not work if want to upload to pypi
# 'nnunet @ git+https://github.com/wasserth/nnUNet_cust@working_2022_03_18#egg=nnUNet',
'nnunet @ git+https://github.com/StanfordMIMI/nnUNet_cust',
# 'nnunet-customized==1.2',
'requests',
'rt_utils'
],
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix',
'Operating System :: MacOS'
],
scripts=[
'bin/TotalSegmentator', 'bin/totalseg_combine_masks', 'bin/crop_to_body',
'bin/totalseg_import_weights'
]
)