2020-07-09 17:21:44 +02:00

9 lines
167 B
Bash
Executable File

#!/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