try to fool github into tracking our dependents again
This commit is contained in:
parent
f9ccd9b58e
commit
3c5dcca431
1 changed files with 4 additions and 4 deletions
8
setup.py
8
setup.py
|
@ -12,11 +12,11 @@ VERSION = (HERE / "version.py").read_text().split()[-1].strip("\"'")
|
||||||
|
|
||||||
RAYLIB_PLATFORM = os.getenv("RAYLIB_PLATFORM", "Desktop")
|
RAYLIB_PLATFORM = os.getenv("RAYLIB_PLATFORM", "Desktop")
|
||||||
if RAYLIB_PLATFORM == "SDL":
|
if RAYLIB_PLATFORM == "SDL":
|
||||||
NAME = "raylib_sdl"
|
NAME = "_sdl"
|
||||||
elif RAYLIB_PLATFORM == "DRM":
|
elif RAYLIB_PLATFORM == "DRM":
|
||||||
NAME = "raylib_drm"
|
NAME = "_drm"
|
||||||
else:
|
else:
|
||||||
NAME = "raylib"
|
NAME = ""
|
||||||
|
|
||||||
class BinaryDistribution(Distribution):
|
class BinaryDistribution(Distribution):
|
||||||
"""Distribution which always forces a binary package with platform name"""
|
"""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
|
# This call to setup() does all the work
|
||||||
setup(
|
setup(
|
||||||
name=NAME,
|
name="raylib"+NAME,
|
||||||
version=VERSION,
|
version=VERSION,
|
||||||
description="Python CFFI bindings for Raylib",
|
description="Python CFFI bindings for Raylib",
|
||||||
long_description=README,
|
long_description=README,
|
||||||
|
|
Reference in a new issue