-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (36 loc) · 1.37 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
#!/usr/bin/env python
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import os
import os.path
import sys
import netdicom
setup(name="pynetdicom",
packages = find_packages(),
include_package_data = True,
version=netdicom.__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="[email protected]",
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 >= 0.9.7"]
)