diff --git a/README.md b/README.md index 7484335..6ad4fcb 100644 --- a/README.md +++ b/README.md @@ -113,12 +113,21 @@ flake8 app_skellington Publish: ``` -# Create a tag with the desired version number: +# Push latest commit, or on commit ready to publish: +git push + +# Create a tag with the desired version number and push: git tag -a v0.2.0 -m "0.2.0 provides modern pyproject.toml build with setuptools, versioning, and publishing" git push origin v0.2.0 + +# Build the wheel: python -m build + +# Publish to pypi: +twine check dist/* twine upload dist/* ``` + * Reference https://packaging.python.org/en/latest/overview/ # Version