mirror of
https://github.com/qwang98/PyChiquito.git
synced 2026-04-22 03:00:16 -04:00
20 lines
450 B
TOML
20 lines
450 B
TOML
[build-system]
|
|
requires = ["maturin>=1.1,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "chiquito"
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
|
|
|
|
[tool.maturin]
|
|
bindings = 'pyo3'
|
|
features = ["pyo3/extension-module"]
|
|
python-source = "python"
|
|
module-name = "chiquito.rust_chiquito"
|