mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-12 10:22:05 +08:00
999a7c1180
* add openpilot[dev] * replace uv pip with uv sync (again) * [upload]
25 lines
473 B
TOML
25 lines
473 B
TOML
[project]
|
|
name = "agnos"
|
|
version = "0.1.0"
|
|
authors = [{name = "Vehicle Researcher", email = "user@comma.ai"}]
|
|
requires-python = "~=3.11"
|
|
description = ""
|
|
dependencies = [
|
|
"openpilot",
|
|
"openpilot[dev]",
|
|
"openpilot[testing]",
|
|
|
|
# hardware.py
|
|
"dbus-python",
|
|
# phantom_touch_logger.py
|
|
"evdev",
|
|
# amplifier.py
|
|
"smbus2",
|
|
|
|
# tinygrad
|
|
"pyopencl == 2024.1", # pinned until cmake update coming with 24.04
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
openpilot = { path = "openpilot" }
|