We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ccd9b commit 3c5dccaCopy full SHA for 3c5dcca
setup.py
@@ -12,11 +12,11 @@
12
13
RAYLIB_PLATFORM = os.getenv("RAYLIB_PLATFORM", "Desktop")
14
if RAYLIB_PLATFORM == "SDL":
15
- NAME = "raylib_sdl"
+ NAME = "_sdl"
16
elif RAYLIB_PLATFORM == "DRM":
17
- NAME = "raylib_drm"
+ NAME = "_drm"
18
else:
19
- NAME = "raylib"
+ NAME = ""
20
21
class BinaryDistribution(Distribution):
22
"""Distribution which always forces a binary package with platform name"""
@@ -25,7 +25,7 @@ def has_ext_modules(foo):
25
26
# This call to setup() does all the work
27
setup(
28
- name=NAME,
+ name="raylib"+NAME,
29
version=VERSION,
30
description="Python CFFI bindings for Raylib",
31
long_description=README,
0 commit comments