forked from OpenGATE/opengate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.66 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=67"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
zip-safe = false
script-files = [
"opengate/bin/opengate_library_path.py"
]
[tool.setuptools.dynamic]
version = { file = "VERSION" }
readme = { file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages]
find = { } # Scanning implicit namespaces is active by default
[project]
name = "opengate"
dynamic = ["version", "readme", "dependencies"]
authors = [{ name = "Opengate collaboration", email = "david.sarrut@creatis.insa-lyon.fr" }]
description = "Simulation for Medical Physics"
license = { file = "LICENSE.md" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
[project.scripts]
opengate_tests = "opengate.bin.opengate_tests:go"
opengate_info = "opengate.bin.opengate_info:go"
opengate_user_info = "opengate.bin.opengate_user_info:go"
opengate_visu = "opengate.bin.opengate_visu:go"
dose_rate = "opengate.bin.dose_rate:go"
split_spect_projections = "opengate.bin.split_spect_projections:go"
voxelize_iec_phantom = "opengate.bin.voxelize_iec_phantom:go"
phid_info = "opengate.bin.phid_info:go"
phid_gammas = "opengate.bin.phid_gammas:go"
phid_tac = "opengate.bin.phid_tac:go"
phid_atomic_relaxation = "opengate.bin.phid_atomic_relaxation:go"
phid_isomeric_transition = "opengate.bin.phid_isomeric_transition:go"