From 415a66430b3c395c8f442d89f4d4ec6d48378276 Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Tue, 19 Nov 2013 13:14:59 +0400 Subject: [PATCH] Support building wheels (PEP-427) With that, "python setup.py bdist_wheel" could be used for building and uploading wheels to PyPI. Change-Id: I64a0c379afd524185497526eae31ccf72cf97c61 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 61ee86f2..823f55fe 100644 --- a/setup.cfg +++ b/setup.cfg @@ -40,3 +40,6 @@ climate.resource.plugins = all_files = 1 build-dir = doc/build source-dir = doc/source + +[wheel] +universal = 1