pt/members/pt-py/pyproject.toml

26 lines
634 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-09 21:41:39 +02:00
readme = "README.md"
2023-07-06 22:06:31 +02:00
requires-python = ">=3.7"
2023-07-09 21:41:39 +02:00
authors = [{ name = "Christoph J. Scherr", email = "software@cscherr.de" }]
license = { file = "LICENSE" }
keywords = ["pyo3"]
2023-07-06 22:06:31 +02:00
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
2023-07-09 21:41:39 +02:00
[project.urls]
Homepage = "https://git.cscherr.de/PlexSheep/pt"
2023-07-06 22:06:31 +02:00
[tool.maturin]
features = ["pyo3/extension-module"]
2023-07-07 21:05:37 +02:00
python-source = "python"
module-name = "libpt._libpt"