Skip to content

Commit 1cba4ae

Browse files
committed
add scripts to help maintain this library
1 parent 0e22930 commit 1cba4ae

3 files changed

Lines changed: 14 additions & 0 deletions

File tree

scripts/build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/zsh
2+
3+
python setup.py develop

scripts/release.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Release new version of instapy-cli
2+
# from build process
3+
4+
twine upload dist/*

0 commit comments

Comments
 (0)