Skip to content

Commit 9d73fc6

Browse files
committed
Add deploy script so I can upload to pip
1 parent 050222c commit 9d73fc6

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

deploy.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
set -e
3+
4+
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
5+
6+
rm -rf build/
7+
rm -rf dist/
8+
python3 setup.py sdist
9+
twine upload dist/*

0 commit comments

Comments
 (0)