Create pypi_uploader.sh

This commit is contained in:
Akash 2020-07-20 22:28:35 +05:30 committed by GitHub
parent 8fd4462025
commit 7db27ae5e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
pypi_uploader.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/bash
python3 --V
cd ..
python3 -m venv waybackvenv
. waybackvenv/bin/activate
cd -
pip3 install --upgrade pip3
pip3 install wheel --upgrade
pip3 install twine -U
python3 setup.py sdist bdist_wheel
twine upload dist/*