-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
46 lines (43 loc) · 1.49 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
import setuptools
with open("README_PKG.md", "r") as fh:
_long_description_ = fh.read()
_description_ = \
"Library for reconstructing arbitrary defined 3D sections" \
"from volumetric medical scans"
setuptools.setup(
name="dicom3d",
version="0.9.9",
author="Alex Mircescu",
author_email="[email protected]",
description= _description_,
long_description= _long_description_,
long_description_content_type="text/markdown",
url="https://github.com/bitdefender/dicom3d",
packages=setuptools.find_packages(),
include_package_data=True,
keywords = [
'python',
'medical', 'rmn', 'ct',
'dicom', 'reconstruction', 'imaging'
],
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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries"
],
install_requires= [
'pydicom', 'numpy'
],
python_requires='>=3.4',
)