forked from pydicom/pynetdicom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.7 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
49
50
from setuptools import setup, find_packages
import os
import sys
# Version
BASE_DIR = os.path.dirname(os.path.realpath(__file__))
VERSION_FILE = os.path.join(BASE_DIR, 'pynetdicom', '_version.py')
with open(VERSION_FILE) as fp:
exec(fp.read())
with open("README.rst", "r") as fp:
long_description = fp.read()
setup(
name = "pynetdicom",
packages = find_packages(),
include_package_data = True,
version = __version__,
zip_safe = False,
description = "A Python implementation of the DICOM networking protocol",
long_description = long_description,
long_description_content_type="text/x-rst",
author = "",
author_email = "[email protected]",
url = "https://github.com/pydicom/pynetdicom",
license = "MIT",
keywords = (
"dicom python medicalimaging radiotherapy oncology pydicom imaging"
),
project_urls={
'Documentation' : 'https://pydicom.github.io/pynetdicom/'
},
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
#"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries",
],
install_requires = ["pydicom>=2.0.0"],
)