20 lines
467 B
TOML
20 lines
467 B
TOML
|
[build-system]
|
||
|
requires = ["maturin>=1.0,<2.0"]
|
||
|
build-backend = "maturin"
|
||
|
|
||
|
[project]
|
||
|
name = "lasprs"
|
||
|
requires-python = ">=3.7"
|
||
|
classifiers = [
|
||
|
"Programming Language :: Rust",
|
||
|
"Programming Language :: Python :: Implementation :: CPython",
|
||
|
"Programming Language :: Python :: Implementation :: PyPy",
|
||
|
]
|
||
|
|
||
|
dependencies = ["numpy"]
|
||
|
|
||
|
[tool.maturin]
|
||
|
features = ["pyo3/extension-module", "extension-module"]
|
||
|
python-source = "python"
|
||
|
module-name = "lasprs._lasprs"
|