From 935501b0e4f80a5b50bcf5baf680470c211a4a34 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 19 Nov 2013 10:31:21 +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: I900a7d2e3777a5c151778679f3049771047855e6 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index 3513c3bf..e8cb0e38 100644 --- a/setup.cfg +++ b/setup.cfg @@ -32,3 +32,6 @@ all_files = 1 [upload_sphinx] upload-dir = doc/build/html + +[wheel] +universal = 1 -- cgit v1.2.1