[+] Deploy script

This commit is contained in:
Azalea (on HyDEV-Daisy) 2022-04-10 06:45:53 -04:00
parent f6a25d7ea8
commit 0a6a61a013

17
deploy.sh Executable file
View file

@ -0,0 +1,17 @@
#!/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/*