-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (32 loc) · 915 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
"""
@author: pritesh-mehta
"""
from setuptools import setup, find_packages
setup(name='dwi_utilities',
version='1.0',
description='Diffusion-weighted MRI utilities',
url='https://github.com/pritesh-mehta/dwi_utilities',
python_requires='>=3.6',
author='Pritesh Mehta',
author_email='pritesh.mehta@kcl.ac.uk',
license='Apache 2.0',
zip_safe=False,
install_requires=[
'numpy',
'scipy',
'pathlib',
'argparse'
],
entry_points={
'console_scripts': [
'adc_map=dwi_utilities.adc_map:process',
'comp_high_b=dwi_utilities.comp_high_b:process',
],
},
packages=find_packages(include=['dwi_utilities']),
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
]
)