[software] 添加16DOF早期训练仿真与Sim2Real闭环

This commit is contained in:
2026-07-21 16:15:14 +08:00
parent 9bd22225f9
commit e9e2c946b3
681 changed files with 137221 additions and 8 deletions
+57
View File
@@ -0,0 +1,57 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "robot"
version = "0.1.0"
description = "mjlab RL tasks for the wheeled-legged robot"
requires-python = ">=3.10"
dependencies = [
"mjlab[cu128]>=1.0.0",
"pynput>=1.8.2",
]
[project.optional-dependencies]
cu128 = ["torch"]
[project.entry-points."mjlab.tasks"]
robot = "robot"
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
override-dependencies = ["mujoco>=3.8.0.dev0"]
[[tool.uv.index]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
[[tool.uv.index]]
name = "nvidia"
url = "https://pypi.nvidia.com/"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[[tool.uv.index]]
name = "mujoco"
url = "https://py.mujoco.org"
explicit = true
[tool.uv.sources]
warp-lang = { index = "nvidia", marker = "sys_platform != 'darwin'" }
torch = [
{ index = "pytorch-cu128", extra = "cu128", marker = "sys_platform != 'darwin'" },
]
mujoco = { index = "mujoco" }
mjlab = { path = "mjlab", editable = true }