forked from pydicom/dicom-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.62 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
51
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from dcm_spec_tools import __version__
EXTRA = {}
BASE_PATH = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(BASE_PATH, 'README.md')) as f:
long_description = f.read()
setup(
name="dcm-spec-tools",
packages=find_packages(),
include_package_data=True,
version=__version__,
install_requires=['pydicom'],
description="Python DICOM tools using input from DICOM specs in docbook format",
author="mrbean-bremen",
author_email="[email protected]",
url="https://github.com/mrbean-bremen/dcm-spec-tools",
keywords="dicom python",
entry_points={
'console_scripts': [
'validate_iods=dcm_spec_tools.validate_iods:main',
'dump_dcm_info=dcm_spec_tools.dump_dcm_info:main'
]
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
'Operating System :: MacOS',
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
long_description=long_description,
long_description_content_type='text/markdown',
**EXTRA
)