#!/bin/bash

set -e

rm -rf dist
pip install --upgrade setuptools wheel twine
python setup.py sdist bdist_wheel
twine upload dist/*
