From 9a630e4e7b98be6df53a07e7f49968991f5bb9a7 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 28 Jun 2022 23:50:11 +0200 Subject: [PATCH] Add setup.py back to fix dependabot --- .pre-commit-config.yaml | 2 +- setup.py | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e0a44baad6..3e864bf527 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -30,7 +30,7 @@ repos: hooks: - id: copyright-notice args: ["--notice=script/copyright.txt", "--enforce-all"] - exclude: tests(/\w*)*/functional/|tests/input|doc/data/messages|examples/|tests(/\w*)*data/ + exclude: tests(/\w*)*/functional/|tests/input|doc/data/messages|examples/|setup.py|tests(/\w*)*data/ types: [python] - repo: https://github.com/asottile/pyupgrade rev: v2.34.0 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000..917c2a0b2a --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +# Keep file until dependabot issue is resolved +# https://github.com/dependabot/dependabot-core/issues/4483 + +from setuptools import setup + +setup()