Implement FastAPI Temporal MVP pipeline

This commit is contained in:
Codex
2026-03-27 00:10:28 +08:00
commit cc03da8a94
52 changed files with 3619 additions and 0 deletions

31
pyproject.toml Normal file
View File

@@ -0,0 +1,31 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "temporal-demo"
version = "0.1.0"
description = "FastAPI + Temporal MVP image pipeline demo"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiosqlite>=0.20,<1.0",
"alembic>=1.13,<2.0",
"fastapi>=0.115,<1.0",
"httpx>=0.27,<1.0",
"pydantic>=2.8,<3.0",
"pydantic-settings>=2.4,<3.0",
"pytest>=8.3,<9.0",
"pytest-asyncio>=0.24,<1.0",
"sqlalchemy>=2.0,<3.0",
"temporalio>=1.7,<2.0",
"uvicorn[standard]>=0.30,<1.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["app*"]
namespaces = true