From 86bdd85c4af7b61073e6004d958279524cc03eb9 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Wed, 13 Nov 2013 19:09:49 +0000 Subject: [PATCH 1/2] Wheel support. --- Makefile | 4 ++++ setup.cfg | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 setup.cfg diff --git a/Makefile b/Makefile index e225b137..9251923c 100644 --- a/Makefile +++ b/Makefile @@ -23,3 +23,7 @@ charade: git clone https://github.com/sigmavirus24/charade.git mv charade/charade requests/packages/ rm -fr charade + +publish: + python setup.py sdist upload + python setup.py bdist_wheel upload diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..5e409001 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[wheel] +universal = 1 From abf96670cea9b9b9e4699323f25c9d92d3a397f2 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Thu, 14 Nov 2013 13:23:45 +0000 Subject: [PATCH 2/2] Add wheel to dev requirements. --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c88bf435..2bedd65e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ py==1.4.12 pytest==2.3.4 -invoke==0.2.0 \ No newline at end of file +invoke==0.2.0 +wheel