pt/pyproject.toml

19 lines
421 B
TOML
Raw Normal View History

2023-07-06 22:06:31 +02:00
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
2023-07-09 19:17:37 +02:00
name = "libpt"
2023-07-06 22:06:31 +02:00
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.maturin]
features = ["pyo3/extension-module"]
2023-07-07 21:05:37 +02:00
python-source = "python"
module-name = "libpt._libpt"