5126770a6c
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
11 lines
248 B
Python
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)
|