Files
FishServer/fish_api/pyproject.toml
zaiun xu d0c53068dd feat(fish_api): add FishAction folder watch via Pydantic settings
Add ACTION_WATCH_* settings, background watch loop in FastAPI lifespan,
and shared action_watch service that updates app_state. Add fish-action-watch
CLI and optional FishAction watch_folder_predict.py for standalone use.

Made-with: Cursor
2026-04-08 19:54:18 +08:00

18 lines
390 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"]
[project.scripts]
fish-action-watch = "app.action_watch_cli:main"