From 9f6f2a333ba1fd71a11f0c26665ee627e3eefe98 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Thu, 2 Oct 2014 16:18:01 -0400 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: I2f3b3a5f75aa8dbe4c40f3b9a1d0da43a4b1a0f1 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index f4b9024..23ad290 100644 --- a/setup.cfg +++ b/setup.cfg @@ -49,3 +49,6 @@ output_file = oslo.vmware/locale/oslo.vmware.pot [pbr] autodoc_index_modules = 1 + +[wheel] +universal = 1