From 78e31e75b0e8257f71031c19896c4d433fcdecfc Mon Sep 17 00:00:00 2001 From: "Dr. Jens Harbott" Date: Tue, 13 Sep 2022 13:44:16 +0200 Subject: [PATCH] Set py_modules to an empty list in setup.py This prevents setuptools 61.0.0 doing autodiscovery and failing since this is not a python module. Signed-off-by: Dr. Jens Harbott Change-Id: I52164b745c5fa2182d8116877eec3a314c930373 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index cd35c3c..31d6ada 100644 --- a/setup.py +++ b/setup.py @@ -17,4 +17,5 @@ import setuptools setuptools.setup( setup_requires=['pbr>=2.0.0'], + py_modules=[], pbr=True)