From 7db27ae5e186e922b09fb2966775b8889f119f4f Mon Sep 17 00:00:00 2001 From: Akash <64683866+akamhy@users.noreply.github.com> Date: Mon, 20 Jul 2020 22:28:35 +0530 Subject: [PATCH] Create pypi_uploader.sh --- pypi_uploader.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pypi_uploader.sh diff --git a/pypi_uploader.sh b/pypi_uploader.sh new file mode 100644 index 0000000..7d4339f --- /dev/null +++ b/pypi_uploader.sh @@ -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/*