mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
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>
4 lines
142 B
Python
4 lines
142 B
Python
# This file exists to keep dependabot happy:
|
|
# https://github.com/dependabot/dependabot-core/issues/4483
|
|
from setuptools import setup
|
|
setup()
|