From eef61d7dc5555a62543e423d3b7954cef0306137 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 19 Nov 2013 10:26:41 +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: I3dd06b63d2fdcce8961f87fe1d71be052cb0fdf0 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index d8224c91f..50dba19d7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,3 +34,6 @@ console_scripts = all_files = 1 build-dir = doc/build source-dir = doc/source + +[wheel] +universal = 1