.. _contributing: Contributing and Development ============================ Thank you for your interest in improving this project. This project is open-source under the `MIT license `__ and welcomes contributions in the form of bug reports, feature requests, and pull requests. Here is a list of important resources for contributors: - `Source Code `__ - `Documentation `__ - `Issue Tracker `__ Tooling in use -------------- - `Poetry `__ for dependency management. - `Nox `__ for running tests, building docs, etc. - GitHub Actions for CI/CD and building the GitHub Pages documentation site. - `Sphinx `__ for writing the documentation in `rST `__, mainly chosen for its excellent support for auto-generating Python API docs. - `pre-commit `__ for faster feedback on your changes. How to set up your development environment ------------------------------------------ You need Python 3.12+ and the following tools: - `Poetry `__ for dependency management - `Nox `__ for running tests, building docs, etc. - `nox-poetry `__ Install the package with development requirements: .. code:: console $ python3 -mvenv venv $ source venv/bin/activate $ pip install poetry $ poetry install Finally, install and set up pre-commit: .. code:: console $ nox --session=pre-commit -- install Running Locally --------------- .. code:: console $ mac-server --debug The app will now be available at http://127.0.0.1:5000 How to test the project ----------------------- Run the full test suite: .. code:: console $ nox List the available Nox sessions: .. code:: console $ nox --list-sessions You can also run a specific Nox session. For example, invoke the unit test suite like this: .. code:: console $ nox --session=tests To manually run the pre-commit tests: .. code:: console $ nox --session=pre-commit Unit tests are located in the `tests/ `__ directory, and are written using the `pytest `__ testing framework. How to build docs ----------------- To build docs, serve them locally, and rebuild as they change: .. code:: console $ DOCS_REBUILD=true nox --session=docs To just build docs to `docs/build/ `__: .. code:: console $ nox --session=docs How to submit changes --------------------- Open a `pull request `__ to submit changes to this project. Your pull request needs to meet the following guidelines for acceptance: - The Nox test suite must pass without errors and warnings. - Include unit tests. This project maintains 100% code coverage. - If your changes add functionality, update the documentation accordingly. Feel free to submit early, though—we can always iterate on this. To run linting and code formatting checks before committing your change, you can install pre-commit as a Git hook by running the following command: .. code:: console $ nox --session=pre-commit -- install It is recommended to open an issue before starting work on anything. This will allow a chance to talk it over with the owners and validate your approach. Release Process --------------- Releases are driven by the version number in ``pyproject.toml``. Use ``poetry version`` to increment the version number, then commit, push, and merge that to ``main``. When a commit lands on ``main`` with a version higher than the latest GitHub release, the release `GitHub Actions `__ workflow automatically tags the commit, runs a Docker build and pushes it to GHCR (GitHub Container Registry), builds and publishes to PyPI, and creates a release on the repo. No manual tagging is required.