Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 684 Bytes

README.md

File metadata and controls

42 lines (26 loc) · 684 Bytes

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