We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0503774 commit 25c0773Copy full SHA for 25c0773
libs/pythonnative/publish_to_pypi.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+
3
+# Clean up old distribution and build directories
4
+rm -rf dist/
5
+rm -rf build/
6
7
+# Generate distribution archives
8
+python setup.py sdist bdist_wheel
9
10
+# Upload the distribution archives to PyPi
11
+twine upload dist/*
0 commit comments