2026-04-08 19:32:23 +08:00
|
|
|
[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",
|
2026-04-09 11:54:30 +08:00
|
|
|
"loguru>=0.7.0",
|
2026-04-16 14:53:01 +08:00
|
|
|
"numpy>=1.26.0",
|
|
|
|
|
"opencv-python-headless>=4.8.0",
|
2026-04-08 19:32:23 +08:00
|
|
|
"uvicorn[standard]>=0.32.0",
|
|
|
|
|
"pydantic-settings>=2.6.0",
|
|
|
|
|
]
|
|
|
|
|
|
2026-04-16 14:53:01 +08:00
|
|
|
[project.optional-dependencies]
|
2026-04-09 11:54:30 +08:00
|
|
|
dev = ["httpx>=0.28.1"]
|
2026-04-08 19:54:18 +08:00
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
fish-action-watch = "app.action_watch_cli:main"
|
2026-04-14 22:06:33 +08:00
|
|
|
fish-measure-debug = "app.measure_debug_cli:main"
|
2026-04-16 11:38:30 +08:00
|
|
|
fish-zed-record = "app.zed_record_cli:main"
|