From 195ce9e9e24480e7b264af95ea9a8012056126a8 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 19 Nov 2013 09:53:49 +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: I34b7f390e2ac60d1a35e1bd352d483e0de7a51e1 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index f90da7b..b019dfc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,3 +30,6 @@ packages = all_files = 1 build-dir = doc/build source-dir = doc/source + +[wheel] +universal = 1 -- cgit v1.2.1