Files
synq/server/pyproject.toml

23 lines
372 B
TOML

[project]
name = "synq-server"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
"pydantic>=2.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"httpx>=0.27",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]