-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (28 loc) · 1.03 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
from setuptools import setup, find_packages
from pydicom_ext import __version__
REQUIRES = []
CLASSIFIERS = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries"]
setup(
name='pydicom_ext',
version=__version__,
description='Additional functions for dicom data manipulation',
url='https://github.com/shinaji/pydicom_ext',
author='shinaji',
author_email='[email protected]',
license='MIT',
keywords='dicom python medical imaging',
packages=find_packages(),
install_requires=REQUIRES,
classifiers=CLASSIFIERS,
)