Skip to content

zombie-einstein/python-project-template

Repository files navigation

python-project-template

Template Repo for Python Projects

Usage

A new repo can be initialised from this template

You should then customise the following files for your project:

  • README.md
  • pyproject.toml

Developers

Dependencies can be installed with poetry by running

poetry install

Pre-Commit Hooks

Pre commit hooks can be installed by running

pre-commit install

Pre-commit checks can then be run using

task lint

Tests

Tests can be run with

task test