build: Re-add setup.py

The Python build tools are fine without a setup.py but Dependabot
chokes: https://github.com/dependabot/dependabot-core/issues/4483

Add a setup.py to keep Dependabot happy.

Fixes #1828

Signed-off-by: Jussi Kukkonen <jkukkonen@vmware.com>
This commit is contained in:
Jussi Kukkonen 2022-02-07 11:44:41 +02:00
parent 8a0bb880be
commit 891e1c76e8

4
setup.py Normal file
View file

@ -0,0 +1,4 @@
# This file exists to keep dependabot happy:
# https://github.com/dependabot/dependabot-core/issues/4483
from setuptools import setup
setup()