1#!/bin/bash 2set -e 3cd "$(dirname "$0")/.." 4 5rm -rf dist/ build/ *.egg-info 6python3 -m build 7twine upload dist/* 8 9