Contributing¶ Dev setup¶ 1 2 3 4python -m venv .venv source .venv/bin/activate pip install -r requirements.txt pip install -e . Lint & test¶ 1 2 3ruff check . black --check . pytest -q Docs: build & serve¶ Install doc dependencies: 1pip install mkdocs mkdocs-material mkdocstrings[python] Build/serve locally (auto-reload): 1mkdocs serve Deploy (manual): 1mkdocs gh-deploy --clean We use NumPy-style docstrings for API reference via mkdocstrings.