From 5ad274a17e0b2aa2638fecd6535bfa4b3856e54d Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 12 Apr 2018 22:34:22 -0400 Subject: Build universal wheels It is possible to use python3 for gear, so support both python2 and python3 wheels. Also update classifier to indicate which versions of python we support. Change-Id: I74384871cabc8d5b22f2d7555201c21f1bf37099 Signed-off-by: Paul Belanger --- setup.cfg | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.cfg b/setup.cfg index f11f162..818562e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,10 @@ classifier = License :: OSI Approved :: Apache Software License Operating System :: OS Independent Programming Language :: Python + Programming Language :: Python :: 2 + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.5 [files] packages = @@ -24,6 +28,9 @@ packages = console_scripts = geard = gear.cmd.geard:main +[bdist_wheel] +universal = 1 + [build_sphinx] all_files = 1 build-dir = doc/build -- cgit v1.2.1