forked from patmun/pynetdicom_legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.66 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
#!/usr/bin/env python
# pip workaround (see: https://github.com/pypa/pip/issues/1979)
import os
os.chdir(os.path.abspath(os.path.dirname(__file__)))
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import os
import os.path
import sys
__version__ = open('netdicom/__version__.py').read().split('"')[1]
print __version__
setup(name="pynetdicom",
packages = find_packages(),
include_package_data = True,
version=__version__,
zip_safe = False, # want users to be able to see included examples,tests
description="Pure python implementation of the DICOM network protocol",
author="Patrice Munger",
author_email="patricemunger@gmail.com",
url="http://pynetdicom.googlecode.com",
license = "LICENCE.txt",
keywords = "dicom python medicalimaging",
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
],
long_description = open('README.txt').read(),
install_requires=["pydicom >= 1.0.0"],
dependency_links=[
"git+https://github.com/darcymason/pydicom.git#egg=pydicom-1.0.0"
]
)