# pre requisites

python -m pip install pip-tools bumpver build twine

# steps

pip-compile pyproject.toml
pip-sync
bumpver update --patch
python -m pip install -e .
rm dist/\*
python -m build
twine upload -r testpypi dist/\*
twine upload -r pypi dist/\*
