Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 1.55 KB

File metadata and controls

21 lines (19 loc) · 1.55 KB

python-template

Static Badge Static Badge Static Badge Static Badge Static Badge

Template for the Python 3.13.11 projects based on Poetry using Flake8, Black, pre-commit, Docker and more

Quick Start:

  1. Create a repository using this template
  2. Clone the created repository with git clone
  3. Rename the created folder
  4. Go to the created folder
  5. Create a local environment using the command poetry env use PYTHON_PATH and add it to your IDE
  6. Rename the python_template folder to the project name and mark it in the IDE as Source Root
  7. Configure the pyproject.toml file for the project
  8. Configure the Flake8 linter and other required tools in the setup.cfg file
  9. Configure the Dockerfile for the project
  10. Configure and install pre-commits with the command pre-commit install
  11. Add the required dependencies with the command poetry add PACKAGE_NAME and install them with the command poetry install