-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (40 loc) · 1.35 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="topasdosecalc",
version="2.0",
author="Sebastian Schäfer",
author_email="sebastian.schaefer@student.uni-halle.de",
description="Merge and scale TOPAS DICOMS - calculate and compare DVHs and Gamma Index",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sebasj13/TopasDoseCalc",
project_urls={"Bug Tracker": "https://github.com/sebasj13/TopasDoseCalc/issues",},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"numpy",
"matplotlib",
"scikit-image",
"topas2numpy",
"pydicom",
"dicompyler-core",
"natsort",
"Pillow",
"pymedphys",
"customtkinter",
"natsort"
],
packages=["topasdosecalc", "topasdosecalc.src"],
scripts=["topasdosecalc/topasdosecalc.py"],
entry_points={
"console_scripts": ["topasdosecalc=topasdosecalc.topasdosecalc:topasdosecalc"],
},
keywords=["topas", "monte-carlo", "python", "simulation", "dvh", "dicom"],
python_requires=">=3.8",
)