[cb5984]: / setup.py

Download this file

38 lines (34 with data), 1.3 kB

 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
from setuptools import setup
setup(name='hd_glio',
version='2.0',
packages=["hd_glio"],
description='Tool for brain tumor segmentation. This is the result of a joint project between the Department of '
'Neuroradiology at the Heidelberg University Hospital and the Division of Medical Image Computing at '
'the German Cancer Research Center (DKFZ). See readme.md for more information',
url='https://github.com/MIC-DKFZ/hd_glio',
python_requires='>=3.5',
author='Fabian Isensee',
author_email='f.isensee@dkfz.de',
license='Apache 2.0',
zip_safe=False,
install_requires=[
'torch',
'numpy',
'scikit-image',
'SimpleITK',
'batchgenerators',
'nnunet>=1.1.5',
],
entry_points={
'console_scripts': [
'hd_glio_predict = hd_glio.hd_glio_predict:main',
'hd_glio_predict_folder = hd_glio.hd_glio_predict_folder:main',
],
},
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix'
]
)