add raylib package (#31) (#31)

Vendor raylib C library + pyray Python bindings (CFFI) from commaai's
raylib and raylib-python-cffi forks.

Supports PLATFORM_DESKTOP (X11/GL) and PLATFORM_COMMA (DRM/EGL/GLES)
backends, auto-detected via /TICI.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Adeeb Shihadeh
2026-03-01 11:08:58 -08:00
committed by GitHub
parent e46683e1fc
commit 9e9a5b56ac
12 changed files with 1752 additions and 0 deletions

16
raylib/pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "raylib"
version = "5.5.0.2"
description = "raylib + pyray Python bindings (commaai fork)"
requires-python = ">=3.8"
dependencies = ["cffi>=1.17.1"]
[tool.setuptools.packages.find]
include = ["raylib*", "pyray*"]
[tool.setuptools.package-data]
raylib = ["install/**/*"]