forked from neurodata/m2g
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (57 loc) · 1.53 KB
/
setup.py
File metadata and controls
60 lines (57 loc) · 1.53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
from setuptools import setup, Extension
from ndmg import VERSION
setup(
name="ndmg",
packages=[
"ndmg",
"ndmg.preproc",
"ndmg.register",
"ndmg.track",
"ndmg.graph",
"ndmg.stats",
"ndmg.utils",
"ndmg.scripts",
],
include_package_data=True,
version=VERSION,
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",
]
},
description="Neuro Data MRI to Graphs Pipeline",
author="Derek Pisner, Greg Kiar, Eric Bridgeford, Alex Loftus, and Will Gray Roncal",
author_email="dpisner@utexas.edu, aloftus2@jhu.edu, gkiar@jhu.edu, wgr@jhu.edu, ebridge2@jhu.edu",
url="https://github.com/neurodata/ndmg",
download_url="https://github.com/neurodata/ndmg/tarball/"
+ VERSION,
keywords=["connectome", "mri", "pipeline"],
classifiers=["Programming Language :: Python :: 3.6"],
install_requires=[
"numpy",
"nibabel",
"dipy==0.16.0",
"scipy",
"python-dateutil",
"pandas",
"boto3",
"awscli",
"matplotlib",
"nilearn",
"sklearn",
"vtk",
"pyvtk",
"fury",
"requests",
"plotly==1.12.9",
"pybids==0.6.4",
"setuptools>=40.0",
"scikit-image",
"networkx",
"configparser>=3.7.4",
"pytest",
],
)