From cd971b8a35abbb6358644852ced41cfb136280c0 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Mon, 6 Feb 2017 17:38:26 -0800 Subject: [PATCH] Add universal wheel support See http://pythonwheels.com/ When uploading to PyPI use: $ python setup.py sdist bdist_wheel upload Refs #250 --- 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 00000000..5e409001 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[wheel] +universal = 1