forked from MIC-DKFZ/TractSeg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·43 lines (42 loc) · 1.53 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
from setuptools import setup, find_packages
setup(name='TractSeg',
version='1.8',
description='Fast and accurate segmentation of white matter bundles',
url='https://github.com/MIC-DKFZ/TractSeg/',
author='Jakob Wasserthal',
author_email='j.wasserthal@dkfz-heidelberg.de',
python_requires='>=2.7',
license='Apache 2.0',
packages=find_packages(),
#Torch/Lasagne has to be installed manually
install_requires=[
'future',
'numpy',
'nibabel>=2.3.0',
'matplotlib',
'sklearn',
'scipy',
'tqdm',
'six',
'psutil',
'dipy'
# 'batchgenerators==0.17' #results in error (version...)
],
# dependency_links=[
# 'https://github.com/MIC-DKFZ/batchgenerators/archive/tractseg_stable.zip#egg=batchgenerators-0.17'
# ],
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix',
'Operating System :: MacOS'
],
scripts=[
'bin/TractSeg', 'bin/ExpRunner', 'bin/flip_peaks', 'bin/calc_FA', 'bin/Tractometry',
'bin/download_all_pretrained_weights'
],
package_data = {'resources': ['MNI_FA_template.nii.gz',
'random_forest_peak_orientation_detection.pkl']},
)