-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (23 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
37 lines (23 loc) · 822 Bytes
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
[project]
name = "slobot"
version = "0.1.18"
dependencies = [
# "genesis-world @ git+https://github.com/Genesis-Embodied-AI/Genesis.git",
"torch",
"tensorboard",
# "lerobot @ git+https://github.com/huggingface/lerobot.git",
"feetech-servo-sdk", # to control motors
"gradio", # to build webapps
# "nvidia-gr00t-sdk" @ git+https://github.com/NVIDIA/Isaac-GR00T.git
"ipykernel", # to run notebooks
"modal", # serverless GPU compute platform
"pyscipopt", # SCIP solver
"ultralytics", # YOLO models
"rerun-sdk[datafusion]", # to store tele-operated episode data
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"slobot.config" = ["trs_so_arm100/*", "trs_so_arm100/assets/*", "assets/*"]
[tool.pytest.ini_options]
pythonpath = ["src"]