From 0fb44a663fccf815320c06ef1fc2c8d19900588f Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 8 Jul 2017 10:24:13 -0700 Subject: [PATCH] Add universal wheel support As django-import-export is a pure Python package (no C code), it can be packaged as a universal wheel. Enable this in setup.cfg. Also configure zest to build the wheel by default. For information on using wheels see: http://pythonwheels.com/ For information on the wheel specification see PEP-0427: https://www.python.org/dev/peps/pep-0427/ For information on creating wheels with zest see: https://zestreleaser.readthedocs.io/en/latest/uploading.html#uploading-wheels --- setup.cfg | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.cfg b/setup.cfg index e739dc4..5a77811 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,9 @@ +[bdist_wheel] +universal = 1 + +[metadata] +license_file = LICENSE + [zest.releaser] +create-wheel = yes python-file-with-version = import_export/__init__.py