fix pypi packages
This commit is contained in:
parent
9321c37397
commit
ad0420408c
3 changed files with 6 additions and 6 deletions
|
@ -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.
|
||||
|
|
|
@ -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 *
|
||||
|
|
6
setup.py
6
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
|
||||
)
|
||||
|
|
Reference in a new issue