-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.31 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
#! /usr/bin/env python
from setuptools import setup
VERSION = '1.0.7'
def main():
setup(name='medimage',
version=VERSION,
description="Represent medical images as numpy array. Supported: .mhd (R/W),.xdr (R/W), dicom (R). Pure Python.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
],
keywords='medical image xdr mhd dicom numpy',
author='Brent Huisman',
author_email='[email protected]',
url='https://github.com/brenthuisman/medimage',
license='LGPL',
include_package_data=True,
zip_safe=False,
install_requires=['numpy','pydicom'],
packages=['medimage'],
)
if __name__ == '__main__':
main()