ansible-collection-kolla/setup.py
Dr. Jens Harbott 5126770a6c Set py_modules to 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.

Signed-off-by: Dr. Jens Harbott <harbott@osism.tech>
Change-Id: Id0b18670847a78c55295c74a7070b580d90ffed0
2022-04-07 16:44:07 +02:00

11 lines
248 B
Python

# Copyright StackHPC Ltd. All Rights Reserved.
# GNU General Public License v3.0+ (see COPYING or
# https://www.gnu.org/licenses/gpl-3.0.txt)
import setuptools
setuptools.setup(
setup_requires=['pbr>=2.0.0'],
py_modules=[],
pbr=True)