[build-system]
requires = ["maturin>=1.1,<2.0"]
build-backend = "maturin"
[project]
name = "lbl_python"
description = "lbl"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
readme = "README.md"
[tool.maturin]
python-source = "python"
module-name = "lbl._lbl_rust"
features = ["pyo3/extension-module"]
[tool.mypy]
strict = true
files = ["python/lbl"]
enable_incomplete_feature = "Unpack"