#!/bin/sh -e

# wipe away any previous builds
rm -fr dist

# make sure libraries used for publishing are up to date
python3 -m pip install --user --upgrade pip setuptools wheel twine
python3 -m pip install --upgrade twine

python3 setup.py sdist
