-
Notifications
You must be signed in to change notification settings - Fork 75
/
setup.py
executable file
·45 lines (44 loc) · 1.61 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
45
from setuptools import Extension, setup, find_packages
setup(name='TractSeg',
version='2.9',
description='Fast and accurate segmentation of white matter bundles',
long_description="See Readme.md on github for more details.",
url='https://github.com/MIC-DKFZ/TractSeg/',
author='Jakob Wasserthal',
author_email='[email protected]',
python_requires='>=3.5',
license='Apache 2.0',
packages=find_packages(),
install_requires=[
'future',
'numpy',
'nibabel>=2.3.0',
'matplotlib',
'scikit-learn',
'scipy',
'tqdm',
'six',
'psutil',
'dipy>=1.5.0',
'fury',
'joblib>=0.13.2',
'seaborn',
'requests',
'xvfbwrapper'
],
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', 'bin/Tracking', 'bin/rotate_bvecs',
'bin/plot_tractometry_results', 'bin/get_image_spacing', 'bin/remove_negative_values'
],
package_data = {'tractseg.resources': ['MNI_FA_template.nii.gz',
'random_forest_peak_orientation_detection.pkl']},
)