diff --git a/Makefile b/Makefile index d30017d..ce4af08 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,17 @@ coverage: ## Run tests with coverage deps: ## Install dependencies pip install -r requirements.txt +devdeps: ## Install development dependencies + pip install black pip-audit flake8 mypy coverage + lint: ## Lint and static-check black odte flake8 odte mypy odte --exclude tests +audit: ## Audit pip + pip-audit + push: ## Push code with tags git push && git push --tags