From 381443ca4d0b69a39c4b88a94dcdda0cf6d87741 Mon Sep 17 00:00:00 2001 From: Will Roberts Date: Wed, 1 Mar 2017 15:16:00 +0100 Subject: [PATCH] setup.cfg: wheels can support both py2 and py3 --- setup.cfg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..79bc678 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[bdist_wheel] +# This flag says that the code is written to work on both Python 2 and Python +# 3. If at all possible, it is good practice to do this. If you cannot, you +# will need to generate wheels for each Python version that you support. +universal=1