Skip to content

Commit 26d5116

Browse files
author
Russell Hay
committed
script for publishing versions to pypi
1 parent 8a1c159 commit 26d5116

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

publish.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
rm -rf dist
6+
python setup.py sdist
7+
python setup.py bdist_wheel
8+
python3 setup.py bdist_wheel
9+
twine upload dist/*

0 commit comments

Comments
 (0)