forked from moloney/dcmstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 801 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
from setuptools import setup, find_packages
setup(name='dcmstack',
description='Stack DICOM images into volumes',
version='0.6.dev',
author='Brendan Moloney',
author_email='[email protected]',
packages=find_packages('src'),
package_dir = {'':'src'},
install_requires=['pydicom >= 0.9.7',
'nibabel',
],
extras_require = {
'doc': ["sphinx"],
'test': ["nose"],
},
entry_points = {'console_scripts' : \
['dcmstack = dcmstack.dcmstack_cli:main',
'nitool = dcmstack.nitool_cli:main',
],
},
test_suite = 'nose.collector'
)