Template for the Python 3.13.11 projects based on Poetry using Flake8, Black, pre-commit, Docker and more
- Create a repository using this template
- Clone the created repository with
git clone - Rename the created folder
- Go to the created folder
- Create a local environment using the command
poetry env use PYTHON_PATHand add it to your IDE - Rename the
python_templatefolder to the project name and mark it in the IDE asSource Root - Configure the
pyproject.tomlfile for the project - Configure the Flake8 linter and other required tools in the
setup.cfgfile - Configure the
Dockerfilefor the project - Configure and install pre-commits with the command
pre-commit install - Add the required dependencies with the command
poetry add PACKAGE_NAMEand install them with the commandpoetry install