From 3c5dcca4315a3e61c378574bde4828356697dc2c Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 21 Nov 2024 11:44:43 +0000 Subject: [PATCH] try to fool github into tracking our dependents again --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 7711c37..cd13904 100644 --- a/setup.py +++ b/setup.py @@ -12,11 +12,11 @@ VERSION = (HERE / "version.py").read_text().split()[-1].strip("\"'") RAYLIB_PLATFORM = os.getenv("RAYLIB_PLATFORM", "Desktop") if RAYLIB_PLATFORM == "SDL": - NAME = "raylib_sdl" + NAME = "_sdl" elif RAYLIB_PLATFORM == "DRM": - NAME = "raylib_drm" + NAME = "_drm" else: - NAME = "raylib" + NAME = "" class BinaryDistribution(Distribution): """Distribution which always forces a binary package with platform name""" @@ -25,7 +25,7 @@ class BinaryDistribution(Distribution): # This call to setup() does all the work setup( - name=NAME, + name="raylib"+NAME, version=VERSION, description="Python CFFI bindings for Raylib", long_description=README,