Files
tiffwrite/pyproject.toml
Wim Pomp f62b711692 - add tiffwrite function for python
- parallel zstd compression
2024-10-09 15:07:38 +02:00

25 lines
592 B
TOML

[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "tiffwrite"
dynamic = ["version"]
authors = [{ name = "Wim Pomp", email = "w.pomp@nki.nl" }]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.optional-dependencies]
test = ["pytest"]
[tool.maturin]
python-source = "py"
features = ["pyo3/extension-module"]
module-name = "tiffwrite.tiffwrite_rs"
[tool.isort]
line_length = 119