Files
SpeechGenderAnalysis/deploy.sh
T
2022-03-25 00:03:23 -04:00

16 lines
190 B
Bash

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