From 4b9bbdd5f01548344db7bad2ee630ba27a71ca8e Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Fri, 18 Jun 2021 18:41:23 +0100 Subject: [PATCH] Update README.md --- README.md | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) 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