aboutsummaryrefslogtreecommitdiff
path: root/bin/build.sh
blob: 39c889d34b441d141d5bdb6903d59f74a767a5b2 (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"
sudo python3 -m twine upload dist/*

printf "> Install updated binary\n"
sudo pip3 install TermIO --upgrade