-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.py
69 lines (65 loc) · 2.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# __init__.py
"""setup.py for dicompyler-core."""
# Copyright (c) 2009-2018 Aditya Panchal
# This file is part of dicompyler-core, relased under a BSD license.
# See the file license.txt included with this distribution, also
# available at https://github.com/dicompyler/dicompyler-core/
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
test_requirements = [
# TODO: put package test requirements here
]
setup(
name='dicompyler-core',
version='0.5.7',
description="A library of core radiation therapy modules for DICOM / " +
"DICOM RT used by dicompyler",
long_description=readme,
author="Aditya Panchal",
author_email='[email protected]',
url='https://github.com/dicompyler/dicompyler-core',
packages=[
'dicompylercore',
],
package_dir={'dicompylercore':
'dicompylercore'},
include_package_data=True,
install_requires=[
"numpy>=1.2",
"pydicom>=0.9.9",
"matplotlib>=1.3.0"
],
extras_require={
'image': ["pillow>=1.0"],
'dvhinterpolation': ["scikit-image"],
'volume': ["shapely>=1.6"],
'doseinterpolation': ["scipy"]
},
license="BSD License",
zip_safe=False,
keywords=[
'dicompyler-core',
'dicompylercore',
'dicompyler'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Physics'
],
test_suite='tests',
tests_require=test_requirements
)