8000 Adding support for Python Wheels · madCode/twilio-python@c9b0fda · GitHub
[go: up one dir, main page]

Skip to content

Commit c9b0fda

Browse files
author
Paul Hallett
committed
Adding support for Python Wheels
1 parent 7df5a01 commit c9b0fda

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,13 @@ docs-install:
2525
docs:
2626
. venv/bin/activate; cd docs && make html
2727

28+
release: venv
29+
. venv/bin/activate; python setup.py sdist upload
30+
. venv/bin/activate; python setup.py bdist_wheel upload
31+
32+
build: venv
33+
. venv/bin/activate; python setup.py sdist
34+
. venv/bin/activate; python setup.py bdist_wheel
35+
2836
clean:
2937
rm -rf venv

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[wheel]
2+
universal = 1

tests/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ coverage
55
nosexcover
66
flake8
77
mccabe
8+
wheel>=0.22.0

0 commit comments

Comments
 (0)
0