blob: cd4afb62d0a884506c020fc348251ce7e156b43c [file] [log] [blame]
Vanessa Rene Valderrama295975d2018-02-27 15:10:17 -08001#!/bin/bash
2# Script to build PyPI artifacts
3set -e -x -o pipefail
4
DW Talton6555db62019-10-07 13:56:49 -07005virtualenv -p "$PYTHON" /tmp/v/twine
Vanessa Rene Valderrama295975d2018-02-27 15:10:17 -08006source "/tmp/v/twine/bin/activate"
7
8pip install twine wheel
9
10cd "$WORKSPACE/$TOX_DIR"
11python setup.py sdist bdist_wheel