-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (75 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
82 lines (75 loc) · 1.97 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
[project]
name = "compmake-z7"
version = "7.2"
readme = ""
description = ""
authors = [{name = "Andrea Censi", email = "AndreaCensi@users.noreply.github.com"}]
dependencies = [
"PyYAML",
"Pympler",
"SystemCmd-z7",
"coverage",
"dill",
"lxml",
"networkx",
"numpy",
"psutil",
"pyreadline",
"setproctitle",
"zuper-commons-z7",
"zuper-typing-z7",
"zuper-utils-asyncio-z7",
"zuper-utils-timing-z7",
"zuper-zapp-interfaces-z7",
"zuper-zapp-z7",]
[project.scripts]
compmake = "compmake:main"
compmake-profile = "compmake:compmake_profile_main"
compmake-run = "compmake:compmake_run_main"
compmake-tracemalloc = "compmake:compmake_tracemalloc_main"
[project.optional-dependencies]
test = [
]
[tool.poetry]
name = "compmake-z7"
version = "7.2"
description = ""
authors = ["Andrea Censi <AndreaCensi@users.noreply.github.com>"]
packages = [
{from = "src", include = "compmake"},
{from = "src", include = "compmake_plugins"},
{from = "src", include = "compmake_plugins/backend_local"},
{from = "src", include = "compmake_plugins/backend_pmake"},
{from = "src", include = "compmake_plugins/backend_ssh_cluster"},
{from = "src", include = "compmake_plugins/execution_stats"},
{from = "src", include = "compmake_utils"},
]
[tool.poetry.dependencies]
PyYAML = "*"
Pympler = "*"
SystemCmd-z7 = "*"
coverage = "*"
dill = "*"
lxml = "*"
networkx = "*"
numpy = "*"
psutil = "*"
pyreadline = "*"
setproctitle = "*"
zuper-commons-z7 = "*"
zuper-typing-z7 = "*"
zuper-utils-asyncio-z7 = "*"
zuper-utils-timing-z7 = "*"
zuper-zapp-interfaces-z7 = "*"
zuper-zapp-z7 = "*"
[tool.poetry.group.test.dependencies]
python = ">=3.12"
[tool.poetry.scripts]
compmake = "compmake:main"
compmake-profile = "compmake:compmake_profile_main"
compmake-run = "compmake:compmake_run_main"
compmake-tracemalloc = "compmake:compmake_tracemalloc_main"
[build-system]
requires = [
"poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"