Add publish make target to automate upload

This commit is contained in:
Ethan Paul 2020-09-24 22:00:58 -04:00
parent 0ab70f4c22
commit 166fb7bbfc
No known key found for this signature in database
GPG Key ID: C5F5542B54A4D9C6

View File

@ -31,3 +31,6 @@ source: ## Build Python source distribution package
test: ## Run the project testsuite(s)
poetry run tox --recreate
publish: wheel source ## Build and upload to pypi (requires $PYPI_API_KEY be set)
poetry publish --username __token__ --password $(PYPI_API_KEY)