2026-01-26 00:56:43 +09:00
|
|
|
[project]
|
|
|
|
|
name = "smartserow-backend"
|
|
|
|
|
version = "0.1.0"
|
2026-01-26 11:52:29 +09:00
|
|
|
description = "GPS and Arduino telemetry service for Smart Serow"
|
2026-01-26 00:56:43 +09:00
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"flask>=3.0",
|
|
|
|
|
"gpsdclient>=1.3",
|
2026-01-26 11:52:29 +09:00
|
|
|
"pyserial>=3.5",
|
2026-01-26 00:56:43 +09:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"ruff",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
smartserow-backend = "main:main"
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|