Development¶
Running tests¶
You can run tests using uv or the provided Makefile.
uv run pytest
# or
make test
Install for development¶
make install
Package build and publish¶
Version control is handled by Python Semantic Release. To preview the next release locally:
make release-check
To run the release workflow, which creates the version commit, tag, and GitHub Release:
make release
Distribution builds are handled by GitHub Actions. The manual build-only path is:
make package-build
Publishing is triggered after the Python Semantic Release workflow completes. The PyPI upload is handled by GitHub Actions using PyPI Trusted Publisher/OIDC; no PyPI API token is required:
make package-publish
Building the docs locally¶
To build the HTML documentation locally:
make docs
The output will be in docs/build/html/index.html.
Contributing¶
Fork the repository.
Create a feature branch.
Add tests for new behavior.
Update documentation where appropriate.
Submit a pull request.