A GitHub template with my python package configurations.
Project description
🐍 python-package-template
Overview
A GitHub template with my python package configurations.
To make sure that the all the tools are available in your virtual environment (and that you are running your code with its latest modifications), install the package in editable mode by running:
pip install --editable ".[dev]"
Alternatively, you can Dev Containers: Reopen in Container in Visual Studio Code if Docker is installed.
[!WARNING] This template represents my personal understanding of the current best practices.
It is advised to do further research before implementing these configurations in your environment.
Feel free to open a new issue if you have any questions or suggestions.
Package tools
This template package relies on the synchronized cooperation of several exceptional tools.
These tools include:
- Codecov - Code coverage
- Pre-Commit - Git hooks running on commits
- MyPy - Static type checking
- Pytest - Testing and code coverage
- Ruff - Formatting and linting
- Tox - Orchestration of the above tools
For documentation:
- Sphinx - Documentation building
- ReadTheDocs - Documentation hosting
- GitHub Pages - Documentation hosting
Codecov
Codecov is used to check the code coverage of the tests.
It also provides a badge that can be added to the README file.
Codecov is set up to be part of the tox reusable workflow, but for this action it is important to generate the coverage report using the --cov-report=xml flag in the pyproject.toml file.
Pre-Commit
Pre-Commit is used to run certain checks on the code before it is committed.
These checks are defined in the .pre-commit-config.yaml file.
To use pre-commit is has to be installed in the virtual environment and also added to the git hooks by running pre-commit install.
In this repository pre-commit is set up for a number of general issues and to run formatting and linting checks with ruff.
Call pre-commit by running:
pre-commit run --all-files
MyPy
Python by default is a dynamically typed language, but being explicit about types can help to avoid bugs.
MyPy makes sure that the types are correct and consistent throughout the code.
The mypy related settings are defined in the pyproject.toml file.
In this repository MyPy is set up be strict and it also checks for some additional issues.
Call mypy by running:
mypy src tests
Pytest
Pytest is a modern testing framework for python.
It is way too complex to explain it here, but it runs all the tests from the tests directory and also checks the code coverage.
Its settings are defined in the pyproject.toml file.
Call pytest by running:
pytest
Ruff
Ruff is a formatter and linter that is built on top of a lot of open source tools.
It is very fast and unifies all the useful code quality solutions into a single tool.
By default it is not too strict, but I like to make it strict by selecting all the available rules.
The exact configuration is defined in the ruff.toml file.
If for some reason it makes sense not to comply with a certain rule, it can be disabled for that line using # noqa: <rule number>.
Call ruff by running:
ruff check src tests
Tox
Tox is useful for running the above tools in an isolated environment.
It makes sure that the package setup is consistent and that the tools are working as expected.
It can be used to test different python versions and different testing scenarios.
In this repository tox is set up to use python 3.11, 3.12 and run pytest, ruff, mypy and documentation tests.
The settings are specified in the tox.ini file.
Call tox by running:
tox
Documentation
The documentation is built with Sphinx and it is hosted both on ReadTheDocs and GitHub Pages.
Both of these services are recommended, however ReadTheDocs requires a bit more setup, but I prefer it as it does not require an extra feature branch to be present.
GitHub repository settings
The following settings are enabled in my repository settings:
Code/About:
- Releases
General/Features:
- Issues
- Preserve this repository
General/Pull Requests:
- Allow squash merging
- Always suggest updating pull request branches
- Automatically delete head branches
Rules/Rulesets:
main
Target branches: Default
- Restrict deletions
- Require pull request before merging
- Dismiss stale pull request approvals when new commits are pushed
- Require review from Code Owners
- Allowed merge methods:
Squash
- Require status checks to pass before merging
- Require branches to be up to date before merging
pre-commit.ci - prtox / tox (3.11)tox / tox (3.12)
- Block force pushes
Environments:
pypi
- Deployment protection rules:
- Required reviewers:
daniel-mizsak - Allow administrators to bypass configured protection rules
Pages/Build and deployment:
- Source: Deploy from branch
- Branch:
gh-pages(root)
Setup PyPi trusted publishing
Add a new pending publisher:
- PyPI Project Name:
python-package-template-pypi(has to match the project name inpyproject.toml) - Owner:
daniel-mizsak - Repository name:
python-package-template - Workflow name:
release.yml
(I am currently not using trusted publishing, as it does not support getting called from a reusable GitHub workflow.
Instead, I am calling my PyPI publishing workflow with an API token.)
More examples
I am trying to use this template in all of my repositories and also contribute back here with new best practices I find. Some of my other repositories that may be interesting to look at:
- falcon-formation - Create evenly distributed hockey teams.
- checkmark - Automated assessment generator and evaluator system.
- pythonvilag-website - Source code that powers the Python Világ website.
- private-lecture-automation - Automation tools for private lecture management.
I have also integrated some of the above mentioned tools into my vscode settings. You can find them in my macos-setup repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python_package_template_pypi-0.2.0.tar.gz.
File metadata
- Download URL: python_package_template_pypi-0.2.0.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
984e1db92dd2c7bc56f5fd93a7cbbbc9e7000aea65f0ae8718d720a41d197555
|
|
| MD5 |
deb70d8e77b082c013b9578da5ce9170
|
|
| BLAKE2b-256 |
953b7af5cbd0e43e30cdfd22990ac52d51f3b1aec97794e55e3a4ec6b45461d2
|
Provenance
The following attestation bundles were made for python_package_template_pypi-0.2.0.tar.gz:
Publisher:
release.yml on daniel-mizsak/python-package-template
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
python_package_template_pypi-0.2.0.tar.gz -
Subject digest:
984e1db92dd2c7bc56f5fd93a7cbbbc9e7000aea65f0ae8718d720a41d197555 - Sigstore transparency entry: 163701757
- Sigstore integration time:
-
Permalink:
daniel-mizsak/python-package-template@b10d0d71243011d479abb6e14c2ab3b1c17b81c9 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/daniel-mizsak
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b10d0d71243011d479abb6e14c2ab3b1c17b81c9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file python_package_template_pypi-0.2.0-py3-none-any.whl.
File metadata
- Download URL: python_package_template_pypi-0.2.0-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad4d1e9f9f9814225fc2f6ea304b7d3857dc9971dc932021d8dda9eb82fa63e5
|
|
| MD5 |
98222e3ad14960dd8ee02750e70600f0
|
|
| BLAKE2b-256 |
5176178d0bb758cf3478de68ac6db6d2f71d642c9253a714c6d23e9d7f62e1d5
|
Provenance
The following attestation bundles were made for python_package_template_pypi-0.2.0-py3-none-any.whl:
Publisher:
release.yml on daniel-mizsak/python-package-template
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
python_package_template_pypi-0.2.0-py3-none-any.whl -
Subject digest:
ad4d1e9f9f9814225fc2f6ea304b7d3857dc9971dc932021d8dda9eb82fa63e5 - Sigstore transparency entry: 163701759
- Sigstore integration time:
-
Permalink:
daniel-mizsak/python-package-template@b10d0d71243011d479abb6e14c2ab3b1c17b81c9 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/daniel-mizsak
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b10d0d71243011d479abb6e14c2ab3b1c17b81c9 -
Trigger Event:
push
-
Statement type: