cat << 'EOF' > pyproject.toml
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"

[project]
name = "edgeguard-sdk"
version = "0.5.0"
description = "Ultra-Fast, Zero-Overhead Layer-0 Pre-Filter for LLM Pipelines & Edge Gateways"
readme = "README.md"
authors = [{ name = "Shmuel Helman" }]
license = { text = "MIT" }
requires-python = ">=3.8"
keywords = ["llm", "security", "guardrails", "prompt-injection", "pii", "rust"]
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: 3",
    "Topic :: Security",
]

[tool.maturin]
module-name = "edgeguard"
features = ["python"]
EOF