-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 838 Bytes
/
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
requires = [
'yaxil==0.9.14',
'pyaml',
'xnattagger>=0.6.6',
'PyBIDS',
'executors==0.6a1',
'selfie',
'lxml',
'numpy==1.26.4',
'dcm2niix',
'tenacity',
'nibabel',
'dipy'
]
about = dict()
with open(os.path.join(here, 'dwiqc', '__version__.py'), 'r') as f:
exec(f.read(), about)
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
packages=find_packages(),
package_data={
'': ['*.yaml']
},
include_package_data=True,
scripts=[
'scripts/dwiQC.py'
],
install_requires=requires
)