-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (37 loc) · 1.34 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
43
44
45
46
47
48
49
#!/usr/bin/env python
# ========================================================================
# Copyright Het Nederlands Kanker Instituut - Antoni van Leeuwenhoek
#
# Licensed under the 3-clause BSD License
# ========================================================================
from setuptools import setup
with open('requirements.txt', 'r') as fp:
requirements = list(filter(bool, (line.strip() for line in fp)))
setup(
name='nrrdify',
author='Joost van Griethuysen',
author_email='[email protected]',
version='0.2',
packages=['nrrdify'],
zip_safe=False,
entry_points={
'console_scripts': [
'nrrdify=nrrdify.commandline:main'
]},
description='DICOM conversion script to check and sort DICOM slices prior to conversion using SimpleITK',
license='BSD License',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows'
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Utilities'
],
install_requires=requirements,
keywords='cancerimaging medicalresearch computationalimaging'
)