forked from bastula/dicompyler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·91 lines (79 loc) · 3.19 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# setup.py
"""Setup script for dicompyler."""
# Copyright (c) 2012-2017 Aditya Panchal
# This file is part of dicompyler, relased under a BSD license.
# See the file license.txt included with this distribution, also
# available at https://github.com/bastula/dicompyler/
from setuptools import setup, find_packages
requires = [
'matplotlib>=1.3.0',
'numpy>=1.2.1',
'pillow>=1.0',
'dicompyler-core>=0.5.2',
'pydicom>=0.9.9',
'wxPython>=4.0.0b2']
setup(
name="dicompyler",
version = "0.5.0",
include_package_data = True,
packages = find_packages(),
package_data = {'dicompyler':
['*.txt', 'resources/*.png', 'resources/*.xrc', 'resources/*.ico',
'baseplugins/*.py', 'baseplugins/*.xrc']},
zip_safe = False,
install_requires = requires,
dependency_links = [
'git+https://github.com/darcymason/pydicom.git#egg=pydicom-1.0.0'],
entry_points={'console_scripts':['dicompyler = dicompyler.main:start']},
# metadata for upload to PyPI
author = "Aditya Panchal",
author_email = "[email protected]",
description = "Extensible radiation therapy research platform and " + \
"viewer for DICOM and DICOM RT.",
license = "BSD License",
keywords = "radiation therapy research python dicom dicom-rt",
url = "https://github.com/bastula/dicompyler/",
classifiers = [
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization"],
long_description = """
dicompyler
==========
dicompyler is an extensible open source radiation therapy research
platform based on the DICOM standard. It also functions as a
cross-platform DICOM RT viewer.
dicompyler runs on Windows, Mac and Linux systems and is available in
source and binary versions. Since dicompyler is based on modular
architecture, it is easy to extend it with 3rd party plugins.
Visit the dicompyler _`home page`:
https://github.com/bastula/dicompyler/ for how-to information and guides.
Getting Help
============
To get help with dicompyler, visit the _`mailing list`:
http://groups.google.com/group/dicompyler/ or follow us on _`twitter`:
http://twitter.com/dicompyler
Requirements
============
dicompyler requires the following packages to run from source:
- Python 2.7 or 3.5 or higher
- wxPython (Phoenix) 4.0.0b2 or higher
- matplotlib 1.3.0 or higher
- numpy 1.3.1 or higher
- Pillow 1.0 or higher
- dicompyler-core 0.5.2 or higher
- pydicom 0.9.9 or higher""",
)