fix pypi packages

This commit is contained in:
Richard Smith 2019-05-21 22:21:41 +01:00
parent 9321c37397
commit ad0420408c
3 changed files with 6 additions and 6 deletions

View file

@ -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
)