Files
FishServer/fish_api/pyproject.toml
zaiun xu 3078b18cfe feat(scripts): add biomass_poller with httpx and loguru
Poll GET /api/v1/biomass/real/camera/ and /health/result/; add loguru to fish_api dev deps.

Made-with: Cursor
2026-04-08 20:02:05 +08:00

18 lines
407 B
TOML

[project]
name = "fish-api"
version = "0.1.0"
description = "FastAPI gateway for FishMeasure (SVO2) and FishAction (MP4)"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic-settings>=2.6.0",
]
[dependency-groups]
dev = ["httpx>=0.28.1", "loguru>=0.7.0"]
[project.scripts]
fish-action-watch = "app.action_watch_cli:main"