forked from pydicom/pynetdicom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.02 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
from setuptools import setup, find_packages
import os
import sys
setup(
name = "pynetdicom3",
packages = find_packages(),
include_package_data = True,
version = '0.9.0',
zip_safe = False,
description = "A Python 3 implementation of the DICOM networking protocol",
author = "",
author_email = "",
url = "https://github.com/pydicom/pynetdicom3",
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 :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
],
install_requires = [
"pydicom"
]
)