-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (34 loc) · 1.22 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
"""
A setuptools based setup module.
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
description = 'pacsman: Picture Archiving and Communication System Manager And Numpifier'
setup(
name='pacsman',
version='0.1.8',
description=description,
long_description=description,
url='https://github.com/innolitics/pacsman',
author='Innolitics, LLC',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Communications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='scientific image',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['pydicom>=1.3', 'pynetdicom>=2', 'numpy', 'pypng', 'scipy'],
dependency_links=['git+https://github.com/pydicom/pynetdicom3.git#egg=pynetdicom3'],
extras_require={},
package_data={},
data_files=[],
)