From 245a36e37d9332c952e2571105c0652686bfdb2a Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Mon, 11 Mar 2019 13:22:33 -0400 Subject: [PATCH] Fix issue with Makefile building a universal binary --- Makefile | 2 +- setup.cfg | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4681a29..cc16273 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ build-sdist: clean-build build-wheel: clean-build /usr/bin/env python3 -m pip install -U wheel - /usr/bin/env python3 setup.py bdist_wheel --universal + /usr/bin/env python3 setup.py bdist_wheel build-rpm: clean-build /usr/bin/env python3 -m pip install -U wheel diff --git a/setup.cfg b/setup.cfg index d645be7..22d4207 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,6 @@ +[metadata] +license_files = LICENSE.txt + [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