Files
agnos-builder/userspace/uv/pyproject.toml
T
Andrei Radulescu 999a7c1180 add missing python dev dependencies (#376)
* add openpilot[dev]

* replace uv pip with uv sync (again)

* [upload]
2024-09-18 10:31:39 -07:00

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" }