remove dependency on inflection per @sDos280 suggestion to speed up pygbag WASM loading, https://github.com/electronstudio/raylib-python-cffi/issues/58

This commit is contained in:
Richard Smith 2024-03-03 12:48:29 +00:00
parent 3744686f7b
commit 2875e28322
2 changed files with 26 additions and 14 deletions

View file

@ -38,7 +38,7 @@ setup(
],
packages=["raylib", "pyray"],
include_package_data=True,
install_requires=["cffi>=1.14.6","inflection"],
install_requires=["cffi>=1.14.6"],
distclass=BinaryDistribution,
cffi_modules=["raylib/build.py:ffibuilder"]
)