[U] Scripts

This commit is contained in:
Azalea (on HyDEV-Daisy)
2022-08-01 12:26:39 -04:00
parent 08bb89b9ac
commit 2548fa8ec4
5 changed files with 36 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
# Stop on error
set -e
# Check if setup.py is present
[[ ! -f "setup.py" ]] && echo "Setup.py not found, please make sure you're in the correct path" && exit -1
# 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/*