-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
33 lines (29 loc) · 1.04 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
from setuptools import setup
setup(
name = "pyTG43",
version = "0.3.0",
author = "Alex Livingstone",
author_email = "[email protected]",
description = "Calculate dose to a point or DVHs for a brachytherapy plan.",
long_description = """
Calculate dose to a point using provided treatment plan information in the form of DICOM files.
Calculations are performed using 2D calculation framework outlined in AAPM TG-43.
Data specifying the source parameters is required, examples and instructions are available at:
http://www.github.com/livingag/pyTG43
""",
keywords = ["radiotherapy", "brachytherapy", "TG43", "medical physics"],
url = "https://github.com/livingag/pyTG43",
packages = ["pyTG43"],
python_requires = '>=3.5.0',
install_requires = [
'numpy>=1.14.2',
'pydicom>=1.0.2',
'xlrd>=1.1.0',
'scipy>=1.0.0',
'terminaltables>=3.1.0',
'matplotlib>=2.2.0+601.g197bb59',
'bokeh>=1.4.0'
],
license = '',
classifiers = [],
)