1#!/bin/sh -ex 2 3unset PYTHONPATH 4python3 -m venv build/venv 5. build/venv/bin/activate 6 7pip install --upgrade build twine 8python -m build 9twine check dist/* 10 11echo 'When ready, upload to PyPI using: build/venv/bin/twine upload dist/*' 12