Files
agnos-builder/userspace/uv/pyproject.toml
T
Adeeb Shihadeh fff3371b32 sync deps:
2026-05-10 15:15:04 -07:00

36 lines
663 B
TOML

[project]
name = "agnos"
version = "0.1.0"
authors = [{name = "Vehicle Researcher", email = "user@comma.ai"}]
requires-python = ">=3.12.3, <3.13"
description = ""
dependencies = [
"openpilot",
"openpilot[testing]",
# hardware.py
"dbus-python",
# amplifier.py
"smbus2",
# provisioning
"pyusb",
# pandad
"libusb1 ==3.1.0", # recent versions segfault on comma three
"paramiko",
# extra nice-to-haves
"evdev",
"ipython",
"py-spy",
"spidev2",
"flaky",
"matplotlib",
# GUIs
"raylib @ git+https://github.com/commaai/dependencies.git@release-raylib#subdirectory=raylib",
]
[tool.uv.sources]
openpilot = { path = "openpilot" }