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 <harbott@osism.tech>
Change-Id: I52164b745c5fa2182d8116877eec3a314c930373
This commit is contained in:
Dr. Jens Harbott 2022-09-13 13:44:16 +02:00
parent c99dfcf7a7
commit 78e31e75b0

View File

@ -17,4 +17,5 @@ import setuptools
setuptools.setup(
setup_requires=['pbr>=2.0.0'],
py_modules=[],
pbr=True)