-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (77 loc) · 3.34 KB
/
pyproject.toml
File metadata and controls
87 lines (77 loc) · 3.34 KB
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
[build-system]
requires = ["setuptools>=67"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
zip-safe = false
script-files = [
'gatetools/clustertools/opengate_power_merge.sh',
'gatetools/clustertools/gate_power_merge.sh',
]
[tool.setuptools.dynamic]
readme = { file = "readme.md", content-type = "text/markdown"}
[tool.setuptools.packages]
find = { } # Scanning implicit namespaces is active by default
[project]
name = "gatetools"
version = "0.12.8"
dynamic = ["readme"]
authors = [{ name = "Opengate collaboration", email = "david.sarrut@creatis.insa-lyon.fr" }]
description = "Python tools for GATE, see https://github.com/OpenGATE/Gate"
license = { file = "LICENSE.md" }
classifiers = [
"Programming Language :: Python",
"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.10"
dependencies = [
'matplotlib',
'click',
'numpy',
'scipy',
'pydicom',
'tqdm',
'colored',
'itk>=5.2.0',
'uproot',
'wget',
'python-box',
'lz4',
'colorama',
#'rt-utils',
'xxhash'
]
[project.scripts]
gt_gate_info = "gatetools.bin.gt_gate_info:gt_gate_info"
gt_image_uncertainty = "gatetools.bin.gt_image_uncertainty:gt_image_uncertainty"
gt_image_arithm = "gatetools.bin.gt_image_arithm:gt_image_arithm_main"
gt_image_crop = "gatetools.bin.gt_image_crop:gt_image_crop"
gt_image_convert = "gatetools.bin.gt_image_convert:gt_image_convert"
gt_image_statistics = "gatetools.bin.gt_image_statistics:gt_image_statistics_main"
gt_hausdorff = "gatetools.bin.gt_hausdorff:gt_hausdorff_main"
gt_gamma_index = "gatetools.bin.gt_gamma_index:gt_gamma_index_main"
gt_affine_transform = "gatetools.bin.gt_affine_transform:gt_affine_transform_main"
gt_write_dicom = "gatetools.bin.gt_write_dicom:gt_write_dicom_main"
gt_dicom_info = "gatetools.bin.gt_dicom_info:gt_dicom_info_main"
gt_image_gauss = "gatetools.bin.gt_image_gauss:gt_image_gauss_main"
gt_image_resize = "gatetools.bin.gt_image_resize:gt_image_resize_main"
gt_image_to_dicom_rt_struct = "gatetools.bin.gt_image_to_dicom_rt_struct:gt_image_to_dicom_rt_struct_main"
gt_dvh = "gatetools.bin.gt_dvh:gt_dvh_main"
gt_merge_root = "gatetools.bin.gt_merge_root:gt_merge_root_main"
gt_morpho_math = "gatetools.bin.gt_morpho_math:gt_morpho_math"
gt_dicom_rt_struct_to_image = "gatetools.bin.gt_dicom_rt_struct_to_image:gt_dicom_rt_struct_to_image"
gt_dicom_rt_pbs2gate = "gatetools.bin.gt_dicom_rt_pbs2gate:gt_pbs_dicom2gate_main"
gt_phsp_info = "gatetools.bin.gt_phsp_info:gt_phsp_info"
gt_phsp_convert = "gatetools.bin.gt_phsp_convert:gt_phsp_convert"
gt_phsp_merge = "gatetools.bin.gt_phsp_merge:gt_phsp_merge"
gt_phsp_plot = "gatetools.bin.gt_phsp_plot:gt_phsp_plot"
gt_phsp_compare = "gatetools.bin.gt_phsp_compare:gt_phsp_plot"
gt_phsp_peaks = "gatetools.bin.gt_phsp_peaks:gt_phsp_peaks"
gt_digi_mac_converter = "gatetools.bin.gt_digi_mac_converter:convert_macro"
gate_split_and_run = "gatetools.clustertools.gate_split_and_run:runJobs"
opengate_run = "gatetools.clustertools.opengate_run:runJobs_click"
computeElapsedTime = "gatetools.clustertools.computeElapsedTime:computeElapsedTime"