-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.3 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
[build-system]
requires = [
"setuptools>=67",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
readme = { file = "readme.md", content-type = "text/markdown"}
[tool.setuptools.packages]
find = { } # Scanning implicit namespaces is active by default
[project]
name = "garf"
version = "2.9"
dynamic = ["readme"]
authors = [{ name = "David Sarrut", email = "[email protected]" }]
description = "Utility tools for GATE ARF simulations"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"itk",
"numpy<2.0.0",
"pre-commit",
"torch>=2.1.0",
"tqdm",
]
[project.scripts]
garf_compare_image_profile = "garf.bin.garf_compare_image_profile:garf_compare_image_profile"
garf_plot_training_dataset = "garf.bin.garf_plot_training_dataset:garf_plot_training_dataset"
garf_plot_test_dataset = "garf.bin.garf_plot_test_dataset:garf_plot_training_dataset"
garf_train = "garf.bin.garf_train:garf_train"
garf_nn_info = "garf.bin.garf_nn_info:garf_nn_info"
pytorch_info = "garf.bin.pytorch_info:pytorch_info"