Add pypack script

This commit is contained in:
Wiktor Zykubek 2020-07-09 17:21:44 +02:00
parent f88984d4ed
commit 3eaa0701df

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