tzk/publish.sh

8 lines
148 B
Bash
Raw Normal View History

2021-09-21 16:54:05 +00:00
#!/bin/bash
set -e
rm -f dist/*
mkdir -p dist
python setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*