diff --git a/README.md b/README.md index 53a6954..e4a165b 100644 --- a/README.md +++ b/README.md @@ -244,9 +244,18 @@ and then only convert them to C data structures when you have to call the C func ## Bunnymark -| Library | Implementation | Bunnies (60 FPS) | Percentage | -| ------------- | ------------- | ------------- | ------------- | -| Raylib 3.7 | C | 168100 | 100% | -| Raylib Python CFFI 3.7 | Pypy 3.7 | 33800 | 20% | -| Raylib Python CFFI 3.7 | Python 3.9 | 6800 | 4% | +| Library | Implementation | Bunnies (60 FPS) | Percentage | +| ------------- | ------------- | ------------- | ------------- | +| Raylib 3.7 | C | 168100 | 100% | +| Raylib Python CFFI 3.7 | Pypy 3.7 | 33800 | 20% | +| Raylib Python CFFI 3.7 | Python 3.9 | 7700 | 4.5% | +| Raylib Python CFFI 3.7 | Python 3.9 Nuitka | 8600 | 5.1% | + +# Packaging your app + +You can create a standalone binary using the Nuitka compiler. For example, here is how to package Bunnymark: + + pip3 install nuitka + cd examples/textures + python3 -m nuitka --onefile --linux-onefile-icon resources/wabbit_alpha.png textures_bunnymark.py