From 41e03effe8a923b4d7173790ef1fb04170afd2db Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Fri, 7 Feb 2014 12:07:09 +0100 Subject: [PATCH] Support building wheels (PEP-427) Universal is used to identify pure-Python module(by bdist_wheel). For these, it is sufficient to build a wheel with _any_ Python ABI version and publish that to PyPI (by whatever means). Change-Id: I9dcb15633c32f670f39283e0d0cb3bcd9133ddac --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 9ab142818..ef41772c1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -72,3 +72,6 @@ tag_svn_revision = 0 #[install] #install-lib=/usr/local/bin/vbarbican/lib/python2.7/site-packages/ + +[wheel] +universal = 1