16 lines
336 B
TOML
16 lines
336 B
TOML
[build-system]
|
|
requires = ["maturin>=1.7,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "ecc_rs"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
]
|
|
dynamic = ["version"]
|
|
[tool.maturin]
|
|
features = ["pyo3/extension-module"]
|
|
bindings = "pyo3"
|