added pi zero backend for wrapping gpsd

This commit is contained in:
Mikkeli Matlock
2026-01-26 00:56:43 +09:00
parent 4d7edd694a
commit 1314b4a05d
4 changed files with 250 additions and 0 deletions

20
pi/backend/pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[project]
name = "smartserow-backend"
version = "0.1.0"
description = "GPS service for Smart Serow"
requires-python = ">=3.11"
dependencies = [
"flask>=3.0",
"gpsdclient>=1.3",
]
[project.optional-dependencies]
dev = [
"ruff",
]
[project.scripts]
smartserow-backend = "main:main"
[tool.ruff]
line-length = 100