Skip to content

Commit 3c5dcca

Browse files
try to fool github into tracking our dependents again
1 parent f9ccd9b commit 3c5dcca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
RAYLIB_PLATFORM = os.getenv("RAYLIB_PLATFORM", "Desktop")
1414
if RAYLIB_PLATFORM == "SDL":
15-
NAME = "raylib_sdl"
15+
NAME = "_sdl"
1616
elif RAYLIB_PLATFORM == "DRM":
17-
NAME = "raylib_drm"
17+
NAME = "_drm"
1818
else:
19-
NAME = "raylib"
19+
NAME = ""
2020

2121
class BinaryDistribution(Distribution):
2222
"""Distribution which always forces a binary package with platform name"""
@@ -25,7 +25,7 @@ def has_ext_modules(foo):
2525

2626
# This call to setup() does all the work
2727
setup(
28-
name=NAME,
28+
name="raylib"+NAME,
2929
version=VERSION,
3030
description="Python CFFI bindings for Raylib",
3131
long_description=README,

0 commit comments

Comments
 (0)