Skip to content

Commit

Permalink
Project: Add surrogate setup.py to satisfy GitHub
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
amotl committed Jun 17, 2024
1 parent 97c9a57 commit 8755851
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit 8755851

Please sign in to comment.