-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (41 loc) · 1.46 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
from setuptools import setup, find_packages
setup(
name='fedi',
version='0.1.23',
packages=find_packages(include=['FEDI', 'FEDI.*']),
install_requires=[
'numpy',
'scipy',
'nibabel',
'matplotlib',
'dipy',
'cvxpy',
# Add other dependencies here
],
entry_points={
'console_scripts': [
'fedi_dmri_outliers=FEDI.scripts.fedi_dmri_outliers:main',
'fedi_dmri_rotate_bvecs=FEDI.scripts.fedi_dmri_rotate_bvecs:main',
'fedi_dmri_snr=FEDI.scripts.fedi_dmri_snr:main',
'fedi_dmri_qweights=FEDI.scripts.fedi_dmri_qweights:main',
'fedi_apply_transform=FEDI.scripts.fedi_apply_transform:main',
'fedi_dmri_reg=FEDI.scripts.fedi_dmri_reg:main',
'fedi_dmri_recon=FEDI.scripts.fedi_dmri_recon:main',
'fedi_dmri_moco=FEDI.scripts.fedi_dmri_moco:main'
],
},
python_requires='>=3.7', # Adjust according to your requirements
package_data={
'FEDI': [
'Sampling_Scheme/*.dvs', # Include non-Python files
'models/*.py', # Include any other files you need
'pipelines/HAITCH/*.py', # Include files in subdirectories
],
},
test_suite='tests',
license='MIT',
author='Haykel Snoussi',
author_email='[email protected]',
long_description=open('documentation/README.rst').read(),
long_description_content_type='text/x-rst',
)