1 parent 0e22930 commit 1cba4aeCopy full SHA for 1cba4ae
3 files changed
scripts/build.sh
@@ -0,0 +1,7 @@
1
+#!/bin/zsh
2
+# Build instapy-cli
3
+
4
+rm -Rf build
5
+rm -Rf dist
6
+python setup.py sdist
7
+python setup.py bdist_wheel
scripts/dev.sh
@@ -0,0 +1,3 @@
+python setup.py develop
scripts/release.sh
@@ -0,0 +1,4 @@
+# Release new version of instapy-cli
+# from build process
+twine upload dist/*
0 commit comments