From 0985234923db043fb7632a0dd9e4ba6e60d12ac9 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Wed, 23 May 2018 10:40:47 -0500 Subject: [PATCH] add support for packaging as a Python wheel This package works with both Python 2 and Python 3 and doesn't use any C extensions so it should be compatible with being an univerisal wheel. --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..2a9acf1 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal = 1