mirror of
https://git.zavage.net/Zavage-Software/app_skellington.git
synced 2024-12-21 14:19:21 -07:00
doc: more documentation on publishing
This commit is contained in:
parent
881a2db9dc
commit
fb0ef3d8f6
11
README.md
11
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
|
||||
|
Loading…
Reference in New Issue
Block a user