From 215a027d326612ec525030e9a0e6bb9d932f6137 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 19 Nov 2013 09:53:10 +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: Ieabefc1fc8c8fbcd8749c07ccabb1ff88e1a761e --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 217ff22e..8dbc6d72 100644 --- a/setup.cfg +++ b/setup.cfg @@ -35,3 +35,6 @@ all_files = 1 [upload_sphinx] upload-dir = doc/build/html + +[wheel] +universal = 1