mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-09-08 01:13:40 +08:00
36 lines
663 B
TOML
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" }
|