make blokus in rust

This commit is contained in:
Noa Aarts 2025-12-05 15:10:02 +01:00
parent 98f161c620
commit eca2b4acb8
Signed by: noa
GPG key ID: 1850932741EFF672
11 changed files with 706 additions and 156 deletions

15
game/pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"
[project]
name = "game"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[tool.maturin]
features = ["pyo3/extension-module"]