forked from MIC-DKFZ/HD-BET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 742 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 742 Bytes
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
from setuptools import setup, find_packages
setup(name='HD_BET',
version='1.0',
description='Tool for brain extraction',
url='https://github.com/MIC-DKFZ/hd-bet',
python_requires='>=3.5',
author='Fabian Isensee',
author_email='f.isensee@dkfz.de',
license='Apache 2.0',
zip_safe=False,
install_requires=[
'numpy',
'torch>=0.4.1',
'scikit-image',
'SimpleITK'
],
scripts=['HD_BET/hd-bet'],
packages=find_packages(include=['HD_BET']),
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix'
]
)