9 lines
167 B
Bash
Executable File
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
|