diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..bffd734 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,22 @@ +# Development / test dependencies for local setup +# Install with: `python -m pip install -r requirements-dev.txt` + +# Testing +pytest +pytest-asyncio +pytest-cov +pytest-xdist + +# Tools +ruff +mypy +pre-commit + +# HTTP client for tests +httpx + +# Coverage helper +coverage + +# Uvicorn for local run +uvicorn[standard]