-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
57 lines (51 loc) · 1.49 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
54
55
56
import sys,os
from setuptools import setup, find_packages
import json
from os.path import join as pjoin, dirname, exists
from glob import glob
from dtiplayground.config import INFO as info
using_setuptools = 'setuptools' in sys.modules
extra_setuptools_args = {}
if using_setuptools:
# Set setuptools extra arguments
extra_setuptools_args = dict(
tests_require=[],
zip_safe=False,
python_requires=">= 3.8",
)
setup(
name='dtiplayground',
version=info['dtiplayground']['version'],
python_requires=">=3.8",
license='MIT',
author="SK Park, NIRAL, University of North Carolina @ Chapel Hill",
author_email='[email protected]',
packages=find_packages('.'),
package_dir={'':'.'},
package_data = {
'': ['*.yml','*.yaml','*.json','*.xml','*.cnf','*.md','*.zip']
},
scripts=glob(pjoin('bin', '*')),
url='https://github.com/niraluser/dtiplayground',
keywords=['dtiplayground','dmriprep','dmriatlas','dmriautotract','dmrifiberprofile','nrrd','nifti','dwi','dti','qc','quality control'],
install_requires=[
'wheel',
'cmake>=3.24.1',
'pynrrd>=0.4.2',
'dipy>=1.6.0',
'pyyaml>=5.3.1',
'nibabel>=3.2.1',
'opencv-python-headless',
'simpleitk>=2.1.1',
'xhtml2pdf',
'flask',
'flask_cors',
'flask_jwt_extended',
'numpy',
'fury',
'markdown',
'reportlab',
'pypdf2',
'pandas',
],
)