A template for creating a Python package
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
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