Skip to content

Commit 748f811

Browse files
committed
document distribution commands into bash scripts
1 parent 76dc4e8 commit 748f811

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

makedist.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
python3 setup.py sdist bdist_wheel

uploaddist.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
VERSION="$1"
3+
twine upload dist/unpythonic-${VERSION}.tar.gz dist/unpythonic-${VERSION}-py3-none-any.whl

0 commit comments

Comments
 (0)