forked from CBICA/NiChart_DLMUSE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (49 loc) · 1.42 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
from setuptools import setup, find_packages
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='niCHARTPipelines',
version='0.1',
description='Run niCHARTPipelines on your data(currently only structural pipeline is supported).',
long_description=long_description,
long_description_content_type='text/markdown',
author='Ashish Singh',
author_email='software@cbica.upenn.edu',
license='MIT',
url="https://github.com/CBICA/niCHARTPipelines",
install_requires=[
'setuptools',
'nipype',
'SimpleITK',
'scipy==1.5.4',
'matplotlib==3.3.3',
'dill==0.3.4',
'h5py==2.10.0',
'hyperopt==0.2.5',
'keras==2.6.0',
'numpy==1.18.5',
'protobuf==3.17.3',
'pymongo==3.12.0',
'scikit-learn==0.24.2',
'nibabel==3.2.1',
'resource==0.2.1',
'networkx==2.5.1',
'pandas==1.2.5',
'pathlib',
'DeepMRSeg @ git+https://github.com/CBICA/DeepMRSeg.git@main'
],
entry_points={
'console_scripts': [
'niCHARTPipelines = niCHARTPipelines.__main__:main'
]
},
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix',
],
packages=setuptools.find_packages(),
include_package_data=True,
)