From 06c7c58bac102838c46a5bef47e3d1758f7095c0 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Mon, 6 Feb 2017 18:17:53 -0800 Subject: Add universal wheel support See http://pythonwheels.com/ Python wheels provide faster installation for pure Python packages. To upload a wheel to PyPI use the command: python setup.py sdist bdist_wheel upload --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 setup.cfg (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..5e40900 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[wheel] +universal = 1 -- cgit v1.2.1