Files
dependencies/raylib/pyproject.toml
Adeeb Shihadeh 21bb9ab18e raylib: fix setup.py to also trigger offscreen variant build
setup.py had its own cache check that only looked for libraylib.a,
skipping build.sh entirely when the cache had the desktop variant.
Now also checks for libraylib_offscreen.a on x86_64.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 15:15:59 -08:00

17 lines
420 B
TOML

[build-system]
requires = ["setuptools>=64", "wheel", "cffi>=1.17.1"]
build-backend = "setuptools.build_meta"
[project]
name = "raylib"
version = "5.5.0.8"
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/**/*", "_raylib_cffi*.so"]