[+] Pypi deploy

This commit is contained in:
Hykilpikonna
2022-07-11 21:51:28 -04:00
parent b3dc82c22d
commit 8d48bb8635
6 changed files with 228 additions and 5 deletions
Executable
+17
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/*