[+] Deploy to pypi

This commit is contained in:
wuliaozhiji
2022-03-25 00:03:23 -04:00
parent efa385bf43
commit 6c6eadc459
8 changed files with 53 additions and 4 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/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/*