version bump
This commit is contained in:
parent
a3d83f134d
commit
9be6e97073
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text()
|
||||||
# This call to setup() does all the work
|
# This call to setup() does all the work
|
||||||
setup(
|
setup(
|
||||||
name="raylib",
|
name="raylib",
|
||||||
version="2.5.0.post3",
|
version="2.5.0.post4",
|
||||||
description="Python CFFI bindings for Raylib",
|
description="Python CFFI bindings for Raylib",
|
||||||
long_description=README,
|
long_description=README,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
@ -27,6 +27,6 @@ setup(
|
||||||
],
|
],
|
||||||
packages=["raylib", "raylib.dynamic", "raylib.static", "raylib.richlib"],
|
packages=["raylib", "raylib.dynamic", "raylib.static", "raylib.richlib"],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=["cffi","inflection"],
|
install_requires=["cffi>=1.12.3","inflection"],
|
||||||
#cffi_modules=["raylib/build_mac.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead
|
#cffi_modules=["raylib/build_mac.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead
|
||||||
)
|
)
|
||||||
|
|
Reference in a new issue