Add dev makefile target

This commit is contained in:
Ethan Paul 2021-05-07 22:12:13 -04:00
parent 867180584b
commit 4f760fa1e5
No known key found for this signature in database
GPG Key ID: D0E2CBF1245E92BF
1 changed files with 4 additions and 0 deletions

View File

@ -45,3 +45,7 @@ publish: clean test wheel source ## Build and upload to pypi (requires $PYPI_API
docs: clean-docs ## Build the documentation using Sphinx
poetry run tox -e docs
dev: ## Create local dev environment
poetry install --remove-untracked
poetry run pre-commit install