-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
38 lines (36 loc) · 1.09 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
# -*- coding: utf-8 -*-
"""Setup module for mritopng"""
from setuptools import setup
def readme():
"""Function to extract readme text from the README.rst file"""
with open('README.md') as f:
return f.read()
setup(
name='mritopng',
version='2.2',
description='Easily convert MRI filed based on the DICOM format to a PNG image',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Environment :: Console',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: End Users/Desktop'
],
url='https://github.com/danishm/mritopng',
author='Danish Mujeeb',
author_email='[email protected]',
license='MIT',
packages=['mritopng'],
zip_safe=False,
install_requires=[
'pypng',
'pydicom>=1.0.0',
'numpy'
],
entry_points={
'console_scripts': ['mritopng = mritopng.__main__:main'],
}
)