blob: 7733f62422e6c28e0c630d79f768eeb24351f0dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# Script to build PyPI artifacts
set -e -x -o pipefail
virtualenv /tmp/v/twine
source "/tmp/v/twine/bin/activate"
pip install twine wheel
cd "$WORKSPACE/$TOX_DIR"
python setup.py sdist bdist_wheel
|