-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.8 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cognitive-robot-abstract-machine"
version = "0.1.0"
requires-python = ">=3.10,<3.13"
description = "Meta-package that wires local subprojects together"
readme = "README.md"
authors = [{ name = "AICOR Institute", email = "you@example.com" }]
# Add dependencies on all workspace members by their distribution names
# uv will resolve these to editable installs via [tool.uv.sources]
dependencies = [
"pycram-robotics",
"giskardpy",
"semantic_digital_twin",
"krrood",
"random-events",
"probabilistic_model",
"robokudo",
"physics_simulators",
"ipykernel>=7.2.0",
"lark-parser>=0.12.0",
]
[tool.uv.workspace]
members = [
"pycram",
"giskardpy",
"semantic_digital_twin",
"krrood",
"random_events",
"probabilistic_model",
"physics_simulators",
"robokudo"
]
[tool.uv.sources]
pycram-robotics = { workspace = true }
giskardpy = { workspace = true }
semantic_digital_twin = { workspace = true }
krrood = { workspace = true }
probabilistic_model = { workspace = true }
random_events = { workspace = true }
robokudo = { workspace = true }
physics_simulators = { workspace = true }
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
pycram-robotics = { path = "pycram", develop = true }
giskardpy = { path = "giskardpy", develop = true }
semantic_digital_twin = { path = "semantic_digital_twin", develop = true }
krrood = { path = "krrood", develop = true }
random_events = { path = "random_events", develop = true }
probabilistic_model = { path = "probabilistic_model", develop = true }
robokudo = { path = "robokudo", develop = true }
physics_simulators = { path = "physics_simulators", develop = true }
[tool.setuptools]
packages = []