2026-01-18 14:56:37 +08:00
|
|
|
[project]
|
2026-01-19 10:44:10 +08:00
|
|
|
name = "blctas"
|
|
|
|
|
version = "1.0.0"
|
|
|
|
|
description = "Add your description here"
|
|
|
|
|
readme = "README.md"
|
2026-01-18 14:56:37 +08:00
|
|
|
requires-python = ">=3.8"
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Rust",
|
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
|
|
|
]
|
2026-01-19 10:44:10 +08:00
|
|
|
dependencies = []
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["maturin>=1.11,<2.0"]
|
|
|
|
|
build-backend = "maturin"
|
|
|
|
|
|
|
|
|
|
[tool.maturin]
|
2026-01-19 16:14:52 +08:00
|
|
|
binding = "pyo3"
|
2026-01-19 10:44:10 +08:00
|
|
|
python-source = "python"
|
|
|
|
|
manifest-path = "rust/Cargo.toml"
|
|
|
|
|
module-name = "blctas._blctas"
|