From cc31a47bb1cfe1a8a03fddd80720dd7632d64010 Mon Sep 17 00:00:00 2001 From: jab Date: Tue, 11 Dec 2018 18:22:17 +0000 Subject: [PATCH] build universal wheels (for python 2 and 3) closes #83 --- setup.cfg | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.cfg b/setup.cfg index d2c784f..34ca003 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,6 +5,11 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. +# https://wheel.readthedocs.io/en/stable/user_guide.html#building-wheels +[bdist_wheel] +universal = 1 + + # http://flake8.pycqa.org/en/latest/user/configuration.html [flake8] ignore = E126,E128,E265,E731,W504