windows build
This commit is contained in:
parent
af798db364
commit
ede24d4729
6 changed files with 25395 additions and 6 deletions
4
setup.py
4
setup.py
|
@ -16,7 +16,7 @@ class BinaryDistribution(Distribution):
|
|||
# This call to setup() does all the work
|
||||
setup(
|
||||
name="raylib",
|
||||
version="3.5.0",
|
||||
version="3.7.0",
|
||||
description="Python CFFI bindings for Raylib",
|
||||
long_description=README,
|
||||
long_description_content_type="text/markdown",
|
||||
|
@ -34,7 +34,7 @@ setup(
|
|||
],
|
||||
packages=["raylib", "raylib.dynamic", "raylib.static"],
|
||||
include_package_data=True,
|
||||
install_requires=["cffi>=1.14.0","inflection"],
|
||||
install_requires=["cffi>=1.14.5","inflection"],
|
||||
distclass=BinaryDistribution,
|
||||
cffi_modules=["raylib/static/build.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead
|
||||
)
|
||||
|
|
Reference in a new issue