#!/bin/bash

set -e

python3 setup.py clean --all

rm -rf dist

python3 setup.py sdist
python3 setup.py bdist_wheel

twine upload dist/* -r pypi
