-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.07 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
[project]
name = "sim-evals"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pip>=25.0",
"mediapy>=1.2.4",
"openpi-client",
"isaaclab[all,isaacsim]==2.2.0",
"tyro>=0.9.17",
"viser>=0.2.11",
"opencv-python>=4.8.0",
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cu118", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]
torchvision = {index = "pytorch-cu118", marker = "sys_platform == 'linux' or sys_platform == 'win32'"}
isaacsim = { index = "isaac" }
real2simeval = { workspace = true }
openpi-client = { git = "https://github.com/Physical-Intelligence/openpi.git", subdirectory = "packages/openpi-client" }
[[tool.uv.index]]
name = "isaac"
url = "https://pypi.nvidia.com"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu118"
url = "https://download.pytorch.org/whl/cu118"
explicit = true
[tool.basedpyright]
extraPaths = [
"./IsaacLab/source/isaaclab",
"./IsaacLab/source/isaaclab_assets",
"./IsaacLab/source/isaaclab_tasks"
]
typeCheckingMode = "standard"