diff --git a/makedist.sh b/makedist.sh new file mode 100755 index 0000000..338298d --- /dev/null +++ b/makedist.sh @@ -0,0 +1,2 @@ +#!/bin/bash +python3 setup.py sdist bdist_wheel diff --git a/uploaddist.sh b/uploaddist.sh new file mode 100755 index 0000000..2e2e4ca --- /dev/null +++ b/uploaddist.sh @@ -0,0 +1,3 @@ +#!/bin/bash +VERSION="$1" +twine upload dist/pyan-${VERSION}.tar.gz dist/pyan-${VERSION}-py3-none-any.whl