From 765b8ab48b6fb991eeb9bcf4f60c0cba6f48359f Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Wed, 5 Mar 2014 02:23:38 +0200 Subject: [PATCH] Add universal Wheel support. Gunicorn works on both Python 2 and Python 3, so we can create a universal Wheel distribution. See https://github.com/pypa/sampleproject/blob/master/setup.cfg for more information. --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index c11ea43a..eba70997 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,3 +6,6 @@ group = System Environment/Daemons [pytest] norecursedirs = examples lib local src + +[wheel] +universal = 1