Add pypack script

This commit is contained in:
samedamci 2020-07-09 17:21:44 +02:00
parent 1af36baa65
commit f9b44b5e7a
No known key found for this signature in database
GPG Key ID: FCB4A9A20D00E894

8
.local/bin/scripts/pypack Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
# Make and deploy Python packages easier.
case "$1" in
"build") python3 setup.py sdist bdist_wheel ;;
"deploy") python3 -m twine upload dist/* ;;
esac