feat: use uv and protobuf

This commit is contained in:
2025-06-10 16:26:23 +08:00
parent 6a6622eff0
commit 884a575d7d
7 changed files with 1776 additions and 0 deletions

20
pyproject.toml Normal file
View File

@ -0,0 +1,20 @@
[project]
name = "max_visualizer"
version = "0.1.0"
description = "python scripts for testing embedded system"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"anyio>=4.9.0",
"awkward>=2.8.3",
"betterproto[compiler]>=2.0.0b7",
"grpcio-tools>=1.71.0",
"loguru>=0.7.3",
"paho-mqtt>=2.1.0",
"plotly>=6.1.2",
"pydantic>=2.11.5",
"streamlit>=1.45.1",
]
[project.scripts]
main = "main:main"