-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathsetup.py
28 lines (24 loc) · 957 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
24
25
26
27
28
import sys
# Make sure we are running python3.5+
if 10 * sys.version_info[0] + sys.version_info[1] < 35:
sys.exit("Sorry, only Python 3.5+ is supported.")
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name = 'med2image',
version = '2.6.6',
description = '(Python) utility to convert medical images to jpg and png',
long_description = readme(),
author = 'FNNDSC',
author_email = 'dev@babymri.org',
url = 'https://github.com/FNNDSC/med2image',
packages = ['med2image'],
install_requires = ['pfmisc', 'nibabel', 'pydicom', 'numpy', 'matplotlib', 'pillow'],
#test_suite = 'nose.collector',
#tests_require = ['nose'],
scripts = ['bin/med2image'],
license = 'MIT',
zip_safe = False
)