Files
agnos-builder/userspace/uv/pyproject.toml
T
Adeeb Shihadeh 414fd93858 add ipython
2024-10-30 15:07:38 -07:00

28 lines
511 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
# extra nice-to-haves
"ipython",
]
[tool.uv.sources]
openpilot = { path = "openpilot" }