Set py_modules to an empty list in setup.py

This prevents setuptools 61.0.0 doing autodiscovery and failing
as this is an ansible role, not a python module.

Change-Id: I5ef8a23aed6193bc61e52f0b069a835d229597d5
This commit is contained in:
Jonathan Rosser 2022-04-04 13:05:37 +01:00
parent bd7543a736
commit 8ca0706565

View File

@ -26,4 +26,5 @@ except ImportError:
setuptools.setup(
setup_requires=['pbr>=2.0.0'],
py_modules=[],
pbr=True)