Files
model-platform/schedule/pyproject.toml
T
2026-08-12 12:21:48 +08:00

38 lines
674 B
TOML

[project]
name = "schedule"
version = "0.2.0"
requires-python = ">=3.12"
dependencies = [
"common",
"fastapi==0.116.1",
"uvicorn[standard]==0.35.0",
"httpx==0.28.1",
"apscheduler==3.11.3",
"pymysql==1.2.0",
"nbclient==0.10.2",
"nbformat==5.10.4",
"ipykernel==6.29.5",
"gunicorn>=26.0.0",
"loguru>=0.7.2",
]
[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"
[dependency-groups]
dev = [
"pytest>=9.1.1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/schedule"]