From 418795ca307100029ef6eb6326ca1be0775ed5f5 Mon Sep 17 00:00:00 2001 From: Adam Chainz Date: Thu, 13 Oct 2016 15:50:24 +0100 Subject: [PATCH] Release as a universal wheel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit By releasing as a [Python wheel](http://pythonwheels.com/) as well as a source distribution, you can speed up end user’s installs. After merging this command, to release you just need to run `python setup.py clean sdist bdist_wheel upload`. --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index b0695bbf5..224f10589 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1 +1,4 @@ +[bdist_wheel] +universal = 1 + [nosetests]