-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (51 loc) · 1.37 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
46
47
48
49
50
51
52
53
from distutils.core import setup
from setuptools import setup
VERSION = "0.1.0"
setup(
name='ndmg',
packages=[
'ndmg',
'ndmg.preproc',
'ndmg.register',
'ndmg.track',
'ndmg.graph',
'ndmg.stats',
'ndmg.utils',
'ndmg.scripts'
],
scripts = [
'ndmg/scripts/ndmg_demo_dwi',
],
entry_points = {
'console_scripts': [
'ndmg_dwi_pipeline=ndmg.scripts.ndmg_dwi_pipeline:main',
'ndmg_bids=ndmg.scripts.ndmg_bids:main',
'ndmg_cloud=ndmg.scripts.ndmg_cloud:main'
]
},
version=VERSION,
description='Neuro Data MRI to Graphs Pipeline',
author='Greg Kiar, Eric Bridgeford, Will Gray Roncal',
url='https://github.com/neurodata/ndmg',
download_url='https://github.com/neurodata/ndmg/tarball/' + VERSION,
keywords=[
'connectome',
'mri',
'pipeline'
],
classifiers=[],
install_requires=[ # We didnt put versions for numpy, scipy, b/c travis-ci
'networkx==1.9',
'nibabel>=2.0',
'nilearn>=0.2',
'sklearn>=0.0',
'numpy', # We use nump v1.10.4
'scipy>=0.14', # We use 0.17.0
'dipy>=0.1',
'boto3',
'matplotlib==1.5.1',
'plotly==1.12',
],
include_package_data=True,
)