Skip to content

Commit

Permalink
try to fool github into tracking our dependents again
Browse files Browse the repository at this point in the history
  • Loading branch information
electronstudio committed Nov 21, 2024
1 parent f9ccd9b commit 3c5dcca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@

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"""
Expand All @@ -25,7 +25,7 @@ def has_ext_modules(foo):

# 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,
Expand Down

0 comments on commit 3c5dcca

Please sign in to comment.