pt/pyproject.toml

26 lines
634 B
TOML

[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "libpt"
readme = "README.md"
requires-python = ">=3.7"
authors = [{ name = "Christoph J. Scherr", email = "software@cscherr.de" }]
license = { file = "LICENSE" }
keywords = ["pyo3"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://git.cscherr.de/PlexSheep/pt"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "libpt._libpt"