|
a |
|
b/setup.py |
|
|
1 |
from setuptools import setup |
|
|
2 |
|
|
|
3 |
|
|
|
4 |
setup(name='hd_glio', |
|
|
5 |
version='2.0', |
|
|
6 |
packages=["hd_glio"], |
|
|
7 |
description='Tool for brain tumor segmentation. This is the result of a joint project between the Department of ' |
|
|
8 |
'Neuroradiology at the Heidelberg University Hospital and the Division of Medical Image Computing at ' |
|
|
9 |
'the German Cancer Research Center (DKFZ). See readme.md for more information', |
|
|
10 |
url='https://github.com/MIC-DKFZ/hd_glio', |
|
|
11 |
python_requires='>=3.5', |
|
|
12 |
author='Fabian Isensee', |
|
|
13 |
author_email='f.isensee@dkfz.de', |
|
|
14 |
license='Apache 2.0', |
|
|
15 |
zip_safe=False, |
|
|
16 |
install_requires=[ |
|
|
17 |
'torch', |
|
|
18 |
'numpy', |
|
|
19 |
'scikit-image', |
|
|
20 |
'SimpleITK', |
|
|
21 |
'batchgenerators', |
|
|
22 |
'nnunet>=1.1.5', |
|
|
23 |
], |
|
|
24 |
entry_points={ |
|
|
25 |
'console_scripts': [ |
|
|
26 |
'hd_glio_predict = hd_glio.hd_glio_predict:main', |
|
|
27 |
'hd_glio_predict_folder = hd_glio.hd_glio_predict_folder:main', |
|
|
28 |
], |
|
|
29 |
}, |
|
|
30 |
classifiers=[ |
|
|
31 |
'Intended Audience :: Science/Research', |
|
|
32 |
'Programming Language :: Python', |
|
|
33 |
'Topic :: Scientific/Engineering', |
|
|
34 |
'Operating System :: Unix' |
|
|
35 |
] |
|
|
36 |
) |
|
|
37 |
|