first commit

This commit is contained in:
Chris
2026-03-23 20:23:58 +08:00
commit 74d612aca1
3193 changed files with 692056 additions and 0 deletions

17
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,17 @@
[project]
name = "mkt-ose-fastapi"
version = "0.1.0"
description = "FastAPI backend for mkt.ose.tw"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"pydantic-settings>=2.4.0",
"httpx>=0.27.0",
"sqlalchemy>=2.0.0",
"asyncpg>=0.29.0"
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"