mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-11 01:32:09 +08:00
40 lines
773 B
TOML
40 lines
773 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",
|
|
|
|
# pandad
|
|
"libusb1 == 3.1.0", # recent versions segfault on comma three
|
|
|
|
# tinygrad
|
|
"pyopencl == 2024.1", # pinned until cmake update coming with 24.04
|
|
|
|
# provisioning
|
|
"pyusb",
|
|
"paramiko",
|
|
|
|
# extra nice-to-haves
|
|
"evdev",
|
|
"ipython",
|
|
"py-spy",
|
|
"spidev2",
|
|
"flaky",
|
|
|
|
# GUIs
|
|
"raylib @ https://github.com/commaai/raylib-python-cffi/releases/download/3/raylib-5.5.0.2-cp312-cp312-linux_aarch64.whl",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
openpilot = { path = "openpilot" }
|