From ce89925a0e09d0e2e2f51ee3edfe1564de39ce1f 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: Iabce8b1e10e141c09a8b9dd34c4a1539174c6438 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 03a0918..1226940 100644 --- a/setup.cfg +++ b/setup.cfg @@ -50,3 +50,6 @@ input_file = oslo.serialization/locale/oslo.serialization.pot keywords = _ gettext ngettext l_ lazy_gettext mapping_file = babel.cfg output_file = oslo.serialization/locale/oslo.serialization.pot + +[wheel] +universal = 1