-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (62 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (62 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "teleopit"
version = "0.4.0"
description = "Teleoperation framework for humanoid robots with motion retargeting"
authors = [
{name = "Teleopit Team"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
dependencies = [
"mujoco",
"mink",
"qpsolvers[proxqp]",
"torch",
"scipy",
"numpy",
"hydra-core",
"omegaconf",
"h5py",
"onnxruntime",
"pyzmq",
"rich",
"loop-rate-limiters",
"imageio",
"huggingface_hub",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
sim2real = [
"opencv-python",
# Also requires g1_bridge_sdk (C++ DDS bridge):
# bash scripts/setup/setup_g1_bridge.sh
]
train = [
"torch>=2.7.0",
"numpy>=1.20.0",
"rsl-rl-lib==5.2.0",
"mjlab==1.4.0",
"wandb>=0.22.3",
"swanlab",
"tqdm>=4.65.0",
]
pico4 = [
"pico-bridge[camera] @ https://github.com/BotRunner64/pico-bridge/releases/download/v0.2.1/pico_bridge-0.2.1-py3-none-any.whl",
"teleopit[sim2real]",
]
recording = [
"teleopit[pico4]",
"opencv-python",
"imageio[ffmpeg]",
]
dexhand = []
[tool.setuptools.packages.find]
where = ["."]
include = ["teleopit*", "train_mimic*"]