Skip to content

Instantly share code, notes, and snippets.

@NatalNW
Created May 4, 2022 16:50
Show Gist options
  • Select an option

  • Save NatalNW/d5badaa9ebf16b205a3012e32908cf75 to your computer and use it in GitHub Desktop.

Select an option

Save NatalNW/d5badaa9ebf16b205a3012e32908cf75 to your computer and use it in GitHub Desktop.
Makefile for Python using poetry
.PHONY: install format lint test sec
install:
poetry install
poetry shell
format:
isort .
blue .
lint:
prospector --with-tool pep257 --doc-warning
sec:
pip-audit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment