From bf130426bb402465ec361089d124d933040c782d Mon Sep 17 00:00:00 2001 From: Paco Nathan Date: Sun, 2 Oct 2022 14:03:10 -0700 Subject: [PATCH] add tooling to release a package --- bin/push_pypi.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 bin/push_pypi.sh diff --git a/bin/push_pypi.sh b/bin/push_pypi.sh new file mode 100755 index 0000000..46ea794 --- /dev/null +++ b/bin/push_pypi.sh @@ -0,0 +1,8 @@ +#!/bin/bash -e + +## to debug the uploaded README file use: +# pandoc README.md --from markdown --to rst -s -o README.rst + +rm -rf dist +python setup.py sdist bdist_wheel +twine upload --verbose dist/*