raylib 4.5.0.0__tar.gz → 5.0.0.0__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.
- {raylib-4.5.0.0/raylib.egg-info → raylib-5.0.0.0}/PKG-INFO +3 -2
- {raylib-4.5.0.0 → raylib-5.0.0.0}/README.md +2 -1
- {raylib-4.5.0.0 → raylib-5.0.0.0}/pyray/__init__.pyi +279 -114
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib/__init__.pyi +256 -100
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib/enums.py +30 -18
- raylib-5.0.0.0/raylib/version.py +1 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0/raylib.egg-info}/PKG-INFO +3 -2
- raylib-5.0.0.0/version.py +1 -0
- raylib-4.5.0.0/raylib/version.py +0 -1
- raylib-4.5.0.0/version.py +0 -1
- {raylib-4.5.0.0 → raylib-5.0.0.0}/LICENSE +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/MANIFEST.in +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/pyray/__init__.py +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib/__init__.py +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib/build.py +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib/colors.py +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib/defines.py +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib.egg-info/SOURCES.txt +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib.egg-info/dependency_links.txt +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib.egg-info/requires.txt +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/raylib.egg-info/top_level.txt +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/setup.cfg +0 -0
- {raylib-4.5.0.0 → raylib-5.0.0.0}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: raylib
|
|
3
|
-
Version:
|
|
3
|
+
Version: 5.0.0.0
|
|
4
4
|
Summary: Python CFFI bindings for Raylib
|
|
5
5
|
Home-page: https://github.com/electronstudio/raylib-python-cffi
|
|
6
6
|
Author: Electron Studio
|
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.7
|
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
18
|
|
|
19
|
-
# Python Bindings for Raylib
|
|
19
|
+
# Python Bindings for Raylib 5.0
|
|
20
20
|
|
|
21
21
|
New CFFI API static bindings.
|
|
22
22
|
* Automatically generated to be as close as possible to
|
|
@@ -50,6 +50,7 @@ First make sure you have the latest pip installed:
|
|
|
50
50
|
|
|
51
51
|
Then install
|
|
52
52
|
|
|
53
|
+
python3 -m pip install setuptools
|
|
53
54
|
python3 -m pip install raylib
|
|
54
55
|
|
|
55
56
|
On most platforms it should install a binary wheel (Windows 10 x64, MacOS 10.15 x64, Linux Ubuntu1804 x64).
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Python Bindings for Raylib
|
|
1
|
+
# Python Bindings for Raylib 5.0
|
|
2
2
|
|
|
3
3
|
New CFFI API static bindings.
|
|
4
4
|
* Automatically generated to be as close as possible to
|
|
@@ -32,6 +32,7 @@ First make sure you have the latest pip installed:
|
|
|
32
32
|
|
|
33
33
|
Then install
|
|
34
34
|
|
|
35
|
+
python3 -m pip install setuptools
|
|
35
36
|
python3 -m pip install raylib
|
|
36
37
|
|
|
37
38
|
On most platforms it should install a binary wheel (Windows 10 x64, MacOS 10.15 x64, Linux Ubuntu1804 x64).
|