feat: 完成工作流调度与上传下载 API

This commit is contained in:
cat-shark
2026-08-08 21:04:21 +08:00
commit a8d11eafc6
32 changed files with 3675 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[project]
name = "wov-api"
version = "0.1.0"
description = "WOV platform API"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"uvicorn",
"python-multipart",
"wov-sdk",
]
[tool.uv.sources]
wov-sdk = { path = "../wov-sdk" }
[dependency-groups]
dev = ["pytest", "pytest-cov", "httpx"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "--cov=app --cov-report=term-missing --cov-fail-under=100"