9 lines
167 B
Plaintext
9 lines
167 B
Plaintext
|
#!/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
|