To create the source and binary distributions:
pipenv run ./setup.py sdist bdist_wheelTo install the package locally, without publishing:
pip install dist/*.whlTo publish the package to pypi:
pipenv run python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*To remove old build artifacts:
pipenv run ./setup.py clean --all- Create a tag for the current version:
git tag `python -m aws_ssh_sync.main -v`
git push --tags- Bump the
__version__in the main module