-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (74 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
80 lines (74 loc) · 1.84 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "carla-env"
version = "0.3.0"
description = "CARLA verifiers environment with navigation, free-roam, vision, version compatibility, NuRec, and Cosmos stylization"
readme = "README.md"
tags = ["agentic", "tool-use", "multi-turn", "robotics", "rl", "eval", "benchmark"]
keywords = ["agentic", "tool-use", "multi-turn", "robotics", "rl", "eval", "benchmark"]
requires-python = ">=3.11,<3.13"
dependencies = [
"verifiers>=0.1.9",
"datasets>=3.0.0",
"imageio>=2.34.0",
"imageio-ffmpeg>=0.5.1",
"numpy>=1.26.0",
"Pillow>=10.0.0",
# CARLA agents deps (navigation/planning)
"networkx>=3.0",
"shapely>=2.0.0",
# Choose exactly one CARLA client extra: .[carla10] or .[carla9].
# The validated install path today is Python 3.12 + .[carla9].
# The base package stays importable without CARLA installed.
# Prime sandbox pooling (default execution mode).
"prime-sandboxes>=0.2.7",
"pproxy>=2.7",
]
[project.optional-dependencies]
carla10 = [
"carla-ue5-api==0.10.0",
]
carla9 = [
"carla==0.9.16",
]
nurec = [
"grpcio>=1.60.0",
"protobuf>=4.25.0",
"scipy>=1.12.0",
"opencv-python>=4.9.0",
]
cosmos = [
"torch>=2.1.0",
"fastapi>=0.110.0",
"uvicorn>=0.27.0",
"pydantic>=2.0.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.6.0",
]
[tool.hatch.build.targets.wheel]
packages = ["carla_env"]
include = [
"carla_env/data/*.json",
"carla_env/_carla_agents/LICENSE",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
cache_dir = ".pytest_cache"
markers = [
"integration: requires a running CARLA server",
]
[tool.ruff]
target-version = "py311"
line-length = 100
extend-exclude = [
# Vendored CARLA code; not linted as part of this project.
"carla_env/_carla_agents",
"third_party",
]
[tool.ruff.lint]
select = ["F", "I"]