forked from SiebeLeysen/LoRE-SD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.12 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name='lore_sd',
version='0.1',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'numpy',
'scipy',
'matplotlib',
'seaborn',
'pandas',
'numba',
'tqdm'
# Add other dependencies here
],
entry_points={
'console_scripts': [
'lore_dwi2decomposition=lore_sd.dwi2decomposition:main',
'lore_angular_correlation=lore_sd.angular_correlation:main',
'lore_decomposition2contrast=lore_sd.decomposition2contrast:main',
'lore_learn_contrast=lore_sd.learn_contrast:main',
'lore_apply_contrast=lore_sd.apply_contrast:main',
],
},
author='Siebe Leysen',
author_email='siebe.leysen@kuleuven.be',
description='A package for DWI decomposition: LoRE-SD decomposes the dMRI data into voxel-level ODFs and response functions.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/SiebeLeysen/LoRE-SD',
python_requires='>=3.6',
)