From 815ac7e52fee2852bc2743c07256e278a607dbf9 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 19 Nov 2013 09:57:32 +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: Ibca65044d61d4b9b248013e4fe316f3c1a05f764 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index d8c21da1..87d08e96 100644 --- a/setup.cfg +++ b/setup.cfg @@ -177,3 +177,6 @@ domain = neutron domain = neutron output_dir = neutron/locale input_file = neutron/locale/neutron.pot + +[wheel] +universal = 1