diff --git a/README.md b/README.md index 7ff01f6..d351cdd 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ See test.py and examples/*.py for how to use. MacOS: Python 3.7: we distribute a statically linked Raylib library, so in theory the only thing you need to do is install us from Pypi. - NOT WORKING CURRENTLY pip3 install -i https://test.pypi.org/simple/ raylib + pip3 install raylib Linux: Python 3.6: we dont distribute Raylib, so you must have Raylib 2.5dev already installed on your system. - NOT WORKING CURRENTLY pip3 install -i https://test.pypi.org/simple/ raylib + pip3 install raylib If you're using a different version of Python, or using Windows, or maybe a Linux/Mac with incompatible libraries you will have to build. diff --git a/raylib/__init__.py b/raylib/__init__.py index ed26290..ee2cd51 100644 --- a/raylib/__init__.py +++ b/raylib/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.5.dev2" +__version__ = "2.5.dev3" from ._raylib_cffi import ffi, lib as rl from _raylib_cffi.lib import * diff --git a/setup.py b/setup.py index e7ecbfc..0f14a79 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text() # This call to setup() does all the work setup( name="raylib", - version="2.5.dev2", + version="2.5.dev3", description="Python CFFI bindings for Raylib", long_description=README, long_description_content_type="text/markdown", @@ -24,7 +24,7 @@ setup( "Programming Language :: Python :: 3.7", ], packages=["raylib"], - include_package_data=False, + include_package_data=True, install_requires=["cffi"], -# cffi_modules=["raylib/build.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 )