We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7635f0c commit f766556Copy full SHA for f766556
.gitignore
@@ -19,4 +19,3 @@ __pycache__/
19
.tox
20
.cache
21
22
-build.sh
build.sh
@@ -0,0 +1,19 @@
1
+#!/bin/bash
2
+
3
+# builds our packages for pypi
4
5
+source env/bin/activate
6
+pip install -r requirements.txt
7
8
+echo "Removing any previous build dir..."
9
+rm -rf build
10
+echo "Removing any previous dist dir..."
11
+rm -rf dist
12
13
+echo "Building for python 2.x..."
14
+python setup.py sdist bdist_wheel
15
+echo "Building for python 3.x..."
16
+/usr/local/bin/python3.5 setup.py sdist bdist_wheel
17
18
+echo "Running twine upload..."
+twine upload dist/*
0 commit comments