-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (53 loc) · 1.92 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
51
52
53
54
55
56
57
58
[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 = "gaga-phsp"
version = "0.7.4"
dynamic = ["readme"]
authors = [{ name = "David Sarrut", email = "[email protected]" }]
description = "Python tools for GATE GAN simulations"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"tqdm",
"colorama",
"click",
"scipy",
"garf>=2.8",
"matplotlib",
"gatetools",
"pathlib"
]
[project.scripts]
gaga_train = "gaga_phsp.bin.gaga_train:gaga_train"
gaga_info = "gaga_phsp.bin.gaga_info:gaga_info"
gaga_plot = "gaga_phsp.bin.gaga_plot:gaga_plot"
gaga_generate = "gaga_phsp.bin.gaga_generate:gaga_generate"
gaga_gauss_test = "gaga_phsp.bin.gaga_gauss_test:gaga_test_gauss"
gaga_gauss_cond_test = "gaga_phsp.bin.gaga_gauss_cond_test:gaga_test_gauss"
gaga_gauss_plot = "gaga_phsp.bin.gaga_gauss_plot:gaga_gauss_plot"
gaga_convert_pth_to_pt = "gaga_phsp.bin.gaga_convert_pth_to_pt:gaga_convert_pth_to_pt"
gaga_pairs_to_tlor = "gaga_phsp.bin.gaga_pairs_to_tlor:go"
gaga_tlor_to_pairs = "gaga_phsp.bin.gaga_tlor_to_pairs:go"
gaga_pet_to_pairs_old = "gaga_phsp.bin.gaga_pet_to_pairs_old:go"
gaga_pet_to_pairs = "gaga_phsp.bin.gaga_pet_to_pairs:go"
gaga_pet_merge_pairs = "gaga_phsp.bin.gaga_pet_merge_pairs:go"
gaga_exit_pos_to_ideal_pos = "gaga_phsp.bin.gaga_exit_pos_to_ideal_pos:go"
gaga_ideal_pos_to_exit_pos = "gaga_phsp.bin.gaga_ideal_pos_to_exit_pos:go"
gaga_tests = "gaga_phsp.bin.gaga_tests:go"