Files
wov-api/pyproject.toml
T

23 lines
436 B
TOML

[project]
name = "wov-api"
version = "0.1.0"
description = "WOV platform API"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"uvicorn",
"python-multipart",
"wov-sdk",
]
[tool.uv.sources]
wov-sdk = { path = "../wov-sdk" }
[dependency-groups]
dev = ["pytest", "pytest-cov", "httpx"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "--cov=app --cov-report=term-missing --cov-fail-under=100"