Files
model-platform/runtime/pyproject.toml
T
2026-08-05 18:59:33 +08:00

28 lines
521 B
TOML

[project]
name = "runtime"
version = "0.2.0"
requires-python = ">=3.12"
dependencies = [
"common",
"fastapi==0.116.1",
"uvicorn[standard]==0.35.0",
"httpx==0.28.1",
"loguru==0.7.2",
"gunicorn>=26.0.0",
"aiofiles>=25.1.0",
]
[tool.uv.sources]
common = { workspace = true }
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
default = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/runtime"]