feat: initialize project with robot simulation demo

This commit is contained in:
2025-11-29 19:47:29 +08:00
parent 8e958c9322
commit 1b8c2f4ee0
5 changed files with 2309 additions and 0 deletions

34
pyproject.toml Normal file
View File

@@ -0,0 +1,34 @@
[project]
name = "ya-vla"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"genesis-world>=0.3.7",
"torch>=2.9.1",
"torchvision>=0.24.1",
]
[dependency-groups]
dev = []
[tool.basedpyright]
exclude = [".venv", ".github", "docs", "tests", ".devcontainer"]
include = ["src"]
venvPath = "."
venv = ".venv"
typeCheckingMode = "basic"
[[tool.uv.index]]
name = "pytorch-cu130"
url = "https://download.pytorch.org/whl/cu130"
explicit = true
[tool.uv.sources]
torch = [
{ index = "pytorch-cu130", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]
torchvision = [
{ index = "pytorch-cu130", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]