diff --git a/Makefile b/Makefile index 60823de..86481d6 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,16 @@ dev: @pipenv install --dev --pre @pipenv run pre-commit install + +release: clear-builds build distribute + +clear-builds: + @rm -rf dist + +build: + @pipenv run python -m pip install --upgrade build + @pipenv run python -m build + +distribute: + @pipenv run python -m pip install --upgrade twine + @pipenv run python -m twine upload dist/*