[+] Add deploy script

This commit is contained in:
Hykilpikonna
2021-12-27 11:41:35 -05:00
parent 6c33a03886
commit fc4404802f
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -e
VERSION=$(python3 -c 'import hypy_utils; print(hypy_utils.__version__)')
echo "$VERSION"
# Build
python3 setup.py sdist bdist_wheel
# Check
python3 -m twine check dist/*
# Upload
python3 -m twine upload dist/*