From 875585161d5712aadd69836899783f95ce2bb43f Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 16 Jun 2024 23:41:08 +0200 Subject: [PATCH] Project: Add surrogate `setup.py` to satisfy GitHub A surrogate `setup.py` is needed to enable the "Used by" section on GitHub. GitHub apparently still can't decode projects exclusively using `pyproject.toml` files in 2024. --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..a2039963 --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +# This is a shim to allow GitHub to decode the package in order to provide +# the "Used by" section on the project homepage. +import setuptools + +if __name__ == "__main__": + setuptools.setup(name="cratedb-toolkit")