git tag -a v0.1.5
git push origin --tags
rm -rf dist/*
python setup.py sdist
twine upload dist/*


# to delete tags
git tag -d v0.1.5
git push --delete origin v0.1.5

