18 lines
434 B
TOML
18 lines
434 B
TOML
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "symclaw"
|
|
description = "A blazing fast symbolic math engine for Python"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT OR Apache-2.0"}
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Rust",
|
|
"Topic :: Scientific/Engineering :: Mathematics",
|
|
]
|
|
|
|
[tool.maturin]
|
|
features = ["pyo3/extension-module"]
|