-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 750 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 750 Bytes
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
from setuptools import find_packages, setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name='ndflow',
version='0.1.0',
description='Nonparametric density flows for MRI intensity normalisation',
long_description=readme(),
author='Daniel Coelho de Castro',
author_email='dc315@imperial.ac.uk',
packages=find_packages(),
entry_points={
'console_scripts': [
'ndflow-estimate=ndflow.tools.estimate:main',
'ndflow-average=ndflow.tools.average:main',
'ndflow-match=ndflow.tools.match:main',
'ndflow-warp=ndflow.tools.warp:main'
]
},
install_requires=[
'numpy',
'scipy',
'SimpleITK'
]
)