From a9d7834c15e3241d40b35e5630db7550d649b16a Mon Sep 17 00:00:00 2001 From: Jonathan Golder Date: Fri, 5 Oct 2018 09:20:49 +0200 Subject: [PATCH] Add a setup.cfg file Based on https://github.com/pypa/sampleproject/blob/master/setup.cfg Issue #5 (https://git.golderweb.de/wiki/jogobot/issues/5) --- setup.cfg | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..44265c3 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,12 @@ +[metadata] +# This includes the license file in the wheel. +license_file = LICENSE.txt + +[bdist_wheel] +# This flag says to generate wheels that support both Python 2 and Python +# 3. If your code will not run unchanged on both Python 2 and 3, you will +# need to generate separate wheels for each Python version that you +# support. Removing this line (or setting universal to 0) will prevent +# bdist_wheel from trying to make a universal wheel. For more see: +# https://packaging.python.org/guides/distributing-packages-using-setuptools/#wheels +# universal=1