18 lines
206 B
Bash
18 lines
206 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Stop on error
|
||
|
set -e
|
||
|
|
||
|
# Remove old build
|
||
|
rm -rf dist/*
|
||
|
rm -rf build/*
|
||
|
|
||
|
# Build
|
||
|
python setup.py sdist bdist_wheel
|
||
|
|
||
|
# Check built files
|
||
|
twine check dist/*
|
||
|
|
||
|
# Upload
|
||
|
twine upload dist/*
|