We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 154a5fc commit 5839b32Copy full SHA for 5839b32
1 file changed
build.sh
@@ -1,11 +1,13 @@
1
#!/bin/bash
2
-pip3 install wheel twine
+pip3 install -e .
3
+pip3 install twine wheel invoke requests
4
5
if [[ $(git rev-parse --is-shallow-repository) == 'true' ]]; then
6
git fetch --unshallow
7
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
8
git fetch origin
9
fi;
10
-python setup.py sdist bdist_wheel --universal
11
+invoke build-pip
12
+invoke deploy-pip
13
twine upload --repository testpypi -u __token__ dist/*
0 commit comments