34 lines
743 B
TOML
34 lines
743 B
TOML
[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",
|
|
"boto3>=1.35,<2.0",
|
|
"fastapi>=0.115,<1.0",
|
|
"greenlet>=3.1,<4.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
|