/python-package-template

Python Package Template

Primary LanguagePythonMIT LicenseMIT

Python Package Template

pytest pre-commit Code style: black Ruff

A template for creating a Python package

Usage

Install cookiecutter:

pip install cookiecutter

Run cookiecutter:

cookiecutter https://github.com/khrapovs/python-package-template

or clone this repository and create a project from it:

git clone git@github.com:khrapovs/python-package-template.git
cookiecutter python-package-template

Contribute

Create a virtual environment and activate it:

python -m venv venv
source venv/bin/activate

Install development dependencies:

pip install -e .[dev]

and use pre-commit to make sure that your code is formatted automatically:

pre-commit install

Run tests:

pip install -e .[test]
pytest