13 lines
166 B
Bash
Executable file
13 lines
166 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -eux
|
|
|
|
main() {
|
|
rm -rf -- dist build
|
|
|
|
python3 setup.py clean
|
|
python3 setup.py sdist
|
|
python3 -m twine upload dist/*
|
|
}
|
|
|
|
main "$@"
|