20 lines
461 B
TOML
20 lines
461 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",
|
|
"loguru>=0.7.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"
|
|
fish-measure-debug = "app.measure_debug_cli:main"
|