mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-21 23:02:04 +08:00
dd8f8e2205
* provisioning dependencies * disable
31 lines
526 B
TOML
31 lines
526 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",
|
|
# amplifier.py
|
|
"smbus2",
|
|
|
|
# tinygrad
|
|
"pyopencl == 2024.1", # pinned until cmake update coming with 24.04
|
|
|
|
# provisioning
|
|
"pyusb",
|
|
"paramiko",
|
|
|
|
# extra nice-to-haves
|
|
"evdev",
|
|
"ipython",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
openpilot = { path = "openpilot" }
|