From f21f811232f34fa773b22e9238c7099499aa68c5 Mon Sep 17 00:00:00 2001 From: Erik Dunteman <44653944+erik-dunteman@users.noreply.github.com> Date: Tue, 28 Nov 2023 21:13:54 -0600 Subject: [PATCH] Feature/new deploy script (#47) * version bump * implemented * using case insensitive headers * new build script --- deploy.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index f1bab19..742c7dd 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,3 +1,4 @@ #! /bin/bash -python3 setup.py sdist bdist_wheel +pip3 install build +python3 -m build python3 -m twine upload dist/* --skip-existing -u $PYPI_USERNAME -p $PYPI_PASSWORD