diff --git a/PyPiNotes.md b/PyPiNotes.md index 1e326f7..ef291b5 100644 --- a/PyPiNotes.md +++ b/PyPiNotes.md @@ -1,5 +1,7 @@ ```bash -geany setup.py # edit version numbeer +geany setup.py # edit version number python setup.py sdist -twine upload -r pypi dist/pylnlib-.tar.gz # credentials are in ~/.pypirc +#twine upload -r pypi dist/pylnlib-.tar.gz # credentials are in ~/.pypirc +twine upload dist/`ls -1 dist/ | tail -1` +rm dist/* ``` diff --git a/setup.py b/setup.py index 76eed09..b1d6aa9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pylnlib", - version="0.2.6", + version="0.3.0", description="A library to monitor LocoNet message on a serial interface", long_description=long_description, long_description_content_type="text/markdown",