Skip to content

Commit 5f8d4cb

Browse files
committed
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.
1 parent 3681642 commit 5f8d4cb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This is a shim to allow GitHub to decode the package in order to provide
2+
# the "Used by" section on the project homepage.
3+
import setuptools
4+
5+
if __name__ == "__main__":
6+
setuptools.setup(name="sqlalchemy-cratedb")

0 commit comments

Comments
 (0)