Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 375 Bytes

File metadata and controls

29 lines (19 loc) · 375 Bytes

Awesome Python Project

This is a template for python projects.

Virtual Environment

Create a virtual Environment

virtualenv .venv -p pytthon 3.14
source .venv/bin/activate

Tests

Using pytest for Tests

python -m pytest

Formatting and Linting

Using pre-commit for linting and formatting

pre-commit install
pre-commit run --all-files