blob: e9faf305ebf9dbdaff4e5265362cf4ff12042752 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
printf "> Create source distribution\n"
python3 setup.py sdist bdist_wheel
printf "> Upload to PyPI\n"
python3 -m twine upload dist/*
printf "> Install updated binary\n"
sudo pip3 install TermIO --upgrade
|