-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.06 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
[project]
name = "lekiwi"
version = "0.1.0"
description = "Lekiwi robot software stack."
requires-python = ">=3.11"
license = "MIT"
dependencies = [
"dora_lekiwi_action_publisher",
"dora_lekiwi_client",
"dora_run_policy",
"lekiwi_lerobot",
"lekiwi_sim",
"lekiwi_teleoperate",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# This project is a meta-package for the workspace, it contains no code itself.
packages = []
[tool.uv.workspace]
members = [
"dora/node_hub/dora_lekiwi_action_publisher",
"dora/node_hub/dora_lekiwi_client",
"dora/node_hub/dora_run_policy",
"packages/*"
]
[tool.pyright]
include = [
"dora/node_hub/dora_lekiwi_action_publisher",
"dora/node_hub/dora_lekiwi_client",
"dora/node_hub/dora_run_policy",
"packages/*",
]
[tool.uv.sources]
dora_lekiwi_action_publisher = { workspace = true }
dora_lekiwi_client = { workspace = true }
dora_run_policy = { workspace = true }
lekiwi_lerobot = { workspace = true }
lekiwi_sim = { workspace = true }
lekiwi_teleoperate = { workspace = true }