From 14a7474b2453703845b7e5069e22eae7c63b6a3f Mon Sep 17 00:00:00 2001 From: Benjamin Braatz Date: Fri, 3 Jul 2020 17:16:25 +0200 Subject: [PATCH] Fix setup error in newer installations --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index f5abc08..7f72916 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,9 @@ setuptools.setup( long_description_content_type="text/markdown", url="http://docs.graph-it.com/graphit/graph-client-py", packages=setuptools.find_packages(), + setup_requires=[ + "wheel" + ], install_requires=[ "msgpack" ], -- 2.34.1