From 72b80ca44e5b68f305c32a8582585071d71da70e Mon Sep 17 00:00:00 2001 From: Akash <64683866+akamhy@users.noreply.github.com> Date: Tue, 21 Jul 2020 08:14:21 +0530 Subject: [PATCH] Create pypi_uploader.sh --- manuals/pypi_uploader.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 manuals/pypi_uploader.sh diff --git a/manuals/pypi_uploader.sh b/manuals/pypi_uploader.sh new file mode 100644 index 0000000..f14de59 --- /dev/null +++ b/manuals/pypi_uploader.sh @@ -0,0 +1,12 @@ +#!/bin/bash +python3 --V +cd .. +python3 -m venv waybackvenv +. waybackvenv/bin/activate +cd - +pip3 install --upgrade pip3 +pip3 install setuptools -U +pip3 install wheel --upgrade +pip3 install twine -U +python3 setup.py sdist bdist_wheel +twine upload dist/*