raylib 5.0.0.3__tar.gz → 5.0.0.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of raylib might be problematic. Click here for more details.

Files changed (40) hide show
  1. {raylib-5.0.0.3 → raylib-5.0.0.5}/MANIFEST.in +5 -0
  2. {raylib-5.0.0.3/raylib.egg-info → raylib-5.0.0.5}/PKG-INFO +2 -2
  3. raylib-5.0.0.5/pyproject.toml +3 -0
  4. {raylib-5.0.0.3 → raylib-5.0.0.5}/pyray/__init__.pyi +3734 -3603
  5. raylib-5.0.0.5/pyray/py.typed +0 -0
  6. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib/__init__.py +8 -2
  7. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib/__init__.pyi +1030 -755
  8. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib/build.py +5 -2
  9. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib/defines.py +0 -6
  10. raylib-5.0.0.5/raylib/glfw3.h.modified +5502 -0
  11. raylib-5.0.0.5/raylib/physac.h.modified +165 -0
  12. raylib-5.0.0.5/raylib/py.typed +0 -0
  13. raylib-5.0.0.5/raylib/raygui.h.modified +843 -0
  14. raylib-5.0.0.5/raylib/raylib.h.modified +1409 -0
  15. raylib-5.0.0.5/raylib/raymath.h.modified +219 -0
  16. raylib-5.0.0.5/raylib/rlgl.h.modified +505 -0
  17. raylib-5.0.0.5/raylib/version.py +1 -0
  18. {raylib-5.0.0.3 → raylib-5.0.0.5/raylib.egg-info}/PKG-INFO +2 -2
  19. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib.egg-info/SOURCES.txt +10 -8
  20. raylib-5.0.0.5/raylib.egg-info/requires.txt +1 -0
  21. {raylib-5.0.0.3 → raylib-5.0.0.5}/setup.py +2 -1
  22. raylib-5.0.0.5/version.py +1 -0
  23. raylib-5.0.0.3/raylib/version.py +0 -1
  24. raylib-5.0.0.3/raylib.egg-info/requires.txt +0 -1
  25. raylib-5.0.0.3/tests/test_color.py +0 -22
  26. raylib-5.0.0.3/tests/test_float_pointers.py +0 -11
  27. raylib-5.0.0.3/tests/test_gamepad.py +0 -17
  28. raylib-5.0.0.3/tests/test_hello_world.py +0 -10
  29. raylib-5.0.0.3/tests/test_pyray.py +0 -44
  30. raylib-5.0.0.3/tests/test_pyray_no_prefix.py +0 -44
  31. raylib-5.0.0.3/tests/test_static_with_only_api_from_dynamic.py +0 -36
  32. raylib-5.0.0.3/version.py +0 -1
  33. {raylib-5.0.0.3 → raylib-5.0.0.5}/LICENSE +0 -0
  34. {raylib-5.0.0.3 → raylib-5.0.0.5}/README.md +0 -0
  35. {raylib-5.0.0.3 → raylib-5.0.0.5}/pyray/__init__.py +0 -0
  36. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib/colors.py +0 -0
  37. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib/enums.py +0 -0
  38. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib.egg-info/dependency_links.txt +0 -0
  39. {raylib-5.0.0.3 → raylib-5.0.0.5}/raylib.egg-info/top_level.txt +0 -0
  40. {raylib-5.0.0.3 → raylib-5.0.0.5}/setup.cfg +0 -0
@@ -4,7 +4,12 @@ include pyray/*.pyi
4
4
  include raylib/*.pyd
5
5
  exclude raylib/*.a
6
6
  include raylib/*.h
7
+ include raylib/*.h.modified
7
8
  exclude raylib/*.c
8
9
  exclude raylib/*.o
9
10
  include version.py
11
+ exclude tests/*
12
+ include raylib/py.typed
13
+ include pyray/py.typed
14
+
10
15
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: raylib
3
- Version: 5.0.0.3
3
+ Version: 5.0.0.5
4
4
  Summary: Python CFFI bindings for Raylib
5
5
  Home-page: https://github.com/electronstudio/raylib-python-cffi
6
6
  Author: Electron Studio
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.8
17
17
  Classifier: Programming Language :: Python :: 3.7
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: LICENSE
20
- Requires-Dist: cffi>=1.17.0rc1
20
+ Requires-Dist: cffi>=1.17.1
21
21
 
22
22
  # Python Bindings for Raylib 5.0
23
23
 
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"