From acf5eb40905f1961c4372a0c25801a22838fe1cb Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 19 Nov 2013 09:54:32 +0100 Subject: 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: Ia277504b291412553981e52bcca1ea9f6bd09b3f --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 03417e0..bc72f33 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,3 +22,6 @@ packages = oslo namespace_packages = oslo + +[wheel] +universal = 1 -- cgit v1.2.1