File size: 125 Bytes
15f6380 |
1 2 3 4 5 6 7 |
#! /bin/sh
rm -fr build dist *.egg-info
python3 setup.py bdist_wheel
git status
twine upload --repository pypi dist/*
exit 0
|
15f6380 |
1 2 3 4 5 6 7 |
#! /bin/sh
rm -fr build dist *.egg-info
python3 setup.py bdist_wheel
git status
twine upload --repository pypi dist/*
exit 0
|