-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.63 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
[project]
name = "openeta"
version = "0.1.0"
description = "OpenETA embodied agent runtime and simulator integration."
requires-python = ">=3.10"
dependencies = [
"gymnasium>=1.0",
"imageio[ffmpeg]>=2.34",
"mcp>=1.0,<2",
"numpy>=1.26",
"Pillow>=10",
"prompt_toolkit>=3.0",
"tiktoken>=0.7",
]
[project.scripts]
openeta = "agent.cli.openeta_cli:main"
openeta-robocasa-benchmark = "scripts.robocasa_benchmark:main"
openeta-batch = "agent.cli.batch_eval:main"
openeta-eval = "agent.cli.eval:main"
openeta-subagent-eval = "agent.cli.subagent_eval:main"
openeta-visual-state-eval = "agent.cli.visual_state_eval:main"
openeta-visual-history-eval = "agent.cli.visual_history_eval:main"
openeta-visual-history-rollout-extract = "agent.cli.visual_history_rollout_extract:main"
openeta-replay = "logger.replay:main"
[project.optional-dependencies]
dev = [
"pytest>=8",
]
# Real-robot deployment hardware SDKs. Imported lazily by real/ drivers so the
# base agent runtime and unit tests do not require these to be installed.
real = [
"pyrealsense2==2.54.1.5216", # pinned: L515 support dropped after 2.54.1 (L515 EOL),
"ur_rtde>=1.5",
"opencv-python>=4.8,<5",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["adapter*", "agent*", "logger*", "real*", "scripts*", "sim*", "tools*"]
[tool.setuptools.package-data]
"agent.skills" = ["*.md"]
"agent.prompts" = ["*.md"]
"real" = ["*.md"]
"tools" = ["*.html"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = [
"agent/codex",
"third_party",
]