A boilerplate for Python 3 projects
Project description
pyplate 
Overview
A boilerplate for Python 3 projects
- Styles code with black
- Lints code with flake8
- Sorts imports with isort
- Validates git commits (and/or formats changes) with pre-commit
- Configures VSCode to use black, flake8, isort, etc. You'll want to install the recommended VSCode extensions, when prompted, as defined in
.vscode/extensions.json
Dev Prerequisites
- python 3.12
- pipx, an optional tool for prerequisite installs
- poetry (install globally with
pipx install poetry) - flake8 (install globally with
pipx install flake8)- flake8-bugbear extension (install with
pipx inject flake8 flake8-bugbear) - flake8-naming extension (install with
pipx inject flake8 pep8-naming)
- flake8-bugbear extension (install with
- black (install globally with
pipx install black) - pre-commit (install globally with
pipx install pre-commit) - just, a Justfile command runner
Windows
Justfile support for Windows requires cygwin. Once installed your PATH will need to be updated to resolve cygpath.exe (probably C:\cygwin64\bin). Justfile will forward any targets with shebangs starting with / to cygwin for execution.
Consider using a bash terminal through WSL instead.
Updating python version:
- Update python version in
Dev Prerequisitesabove - Update [tool.poetry.dependencies] section of
pyproject.toml - Update pyupgrade hook in
.pre-commit-config.yaml - Update python version in
.gitlab-ci.yml
Justfile Targets
install: installs poetry dependencies and pre-commit git hooksupdate_boilerplate: fetches and applies updates from the boilerplate remotetest: runs pytest with test coverage report
Usage
To start a new project, clone this repository, then rename the origin remote to boilerplate
git remote rename origin boilerplate
Then add your new remote origin
git remote add origin <remote repository>
Remove and replace (or rename) the pysrc/pyplate module to start your new project. Be sure to also replace pyplate references in pyproject.toml with your new module / project name.
Be sure to update .gitlab-ci.yml as needed. The PACKAGE_NAME variable should match the pyproject.toml tool.poetry.name field, otherwise the CI may publish incorrectly.
For the gitlab CI to publish you need to add two environment variables to your gitlab repository:
- PYPI_API_TOKEN: used to authenticate with PyPi for package publishing, see https://pypi.org/manage/account/token/
- GITLAB_CI_TOKEN: used to resolve a release candidate number for prerelease publishing. Requires at least
read_apiscope per Gitlab peronal access token, see https://gitlab.com/-/user_settings/personal_access_tokens
You can also add this repository to an existing project as the boilerplate remote:
git remote add boilerplate git@gitlab.com:tysonholub/pyplate.git
The following should help apply the boilerplate history into an existing project. Depending on your existing project structure, you may want to move everything into a backup/ folder first, then refactor accordingly after merging the boilerplate remote.
git merge boilerplate/main --no-ff --allow-unrelated-histories
Then moving forward, run just update_boilerplate to pull latest changes from the boilerplate remote. NOTE: you must keep the boilerplate remote history intact to successfully merge updates from the boilerplate remote.
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 pyplate_boilerplate-1.0.2.tar.gz.
File metadata
- Download URL: pyplate_boilerplate-1.0.2.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.0 CPython/3.13.2 Linux/5.15.154+
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bc154e63dd5d4cf2c04a56856d866beffe855151311236b3d0b4277ddb31040
|
|
| MD5 |
b0c2b8fcfd49ddb7aacc8bc3ab355752
|
|
| BLAKE2b-256 |
cc72c9f25650b3b169bc7e17e64f6fab3e7d72d8073727e6702b0df3751ad461
|
File details
Details for the file pyplate_boilerplate-1.0.2-py3-none-any.whl.
File metadata
- Download URL: pyplate_boilerplate-1.0.2-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.0 CPython/3.13.2 Linux/5.15.154+
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a096af8ba396a43f1c65944138231cbdcbb9a655fd5675ffbd7d38c6e7d36824
|
|
| MD5 |
00b8a6d44b2e81f0d0ef7380bf52544d
|
|
| BLAKE2b-256 |
31aa059050c1561ab60c61f6953089c911cccc29268ab3f66d9cf8ba69845b99
|