Contributing¶
Project setup¶
In case you want to play with the source code or contribute changes, proceed as follows:
- Check out the project from GitHub:
bash $ git clone https://github.com/roskakori/pygount.git $ cd pygount - Install uv.
- Create the virtual environment and install the required packages:
bash $ uv sync --all-groups - Install the pre-commit hook:
bash $ uv run pre-commit install
Testing¶
To run the test suite:
$ uv run pytest
To build and browse the coverage report in HTML format:
$ sh scripts/test_coverage.sh
$ open htmlcov/index.html # macOS only
Documentation¶
To build the documentation in HTML format:
$ uv run scripts/build_documentation.sh
$ open docs/_build/html/index.html # macOS only
Coding guidelines¶
The code throughout uses a natural naming schema avoiding abbreviations, even for local variables and parameters.
Many coding guidelines are automatically enforced (and some even fixed automatically) by the pre-commit hook. If you want to check and clean up the code without performing a commit, run:
$ uv run pre-commit run --all-files
In particular, this applies checks from black, flake8 and isort.
Publish a new version¶
This section is only relevant for developers with access to the PyPI project.
To add a new release, first update the pyproject.toml:
[project]
version = "3.x.x"
Next, build the project and run the tests to ensure everything works:
$ rm -rf dist # Remove any files from previous builds.
$ uv build
$ uv run pytest
Then create a tag in the repository:
$ git tag -a -m "Tag version 3.x.x" v3.x.x
$ git push --tags
Publish the new version on PyPI:
$ uv publish
Finally, add a GitHub release based on the tag from above to the release page.