Add pyproject for rustbpe standalone

This commit is contained in:
TensorTemplar 2025-11-05 13:58:12 +02:00
parent 885a4f25e7
commit 59487556ce
No known key found for this signature in database
GPG Key ID: F810974410C09E22

18
rustbpe/pyproject.toml Normal file
View File

@ -0,0 +1,18 @@
[project]
name = "rustbpe"
version = "0.1.0"
description = "Rust BPE tokenizer from nanochat as standalone package"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = []
[build-system]
requires = ["maturin>=1.0"]
build-backend = "maturin"
[tool.maturin]
module-name = "rustbpe"
bindings = "pyo3"
python-source = "."
features = ["pyo3/extension-module"]