Files
tiffwrite/pyproject.toml
Wim Pomp 4d31933a38 - make zstd block include content size so fiji can actually read it
- add compression level argument
- remove shape argument
- some more pytest tests
2024-10-11 18:52:49 +02:00

26 lines
663 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",
]
dependencies = ["colorcet", "matplotlib", "numpy", "tqdm"]
[project.optional-dependencies]
test = ["pytest", "tifffile"]
[tool.maturin]
python-source = "py"
features = ["pyo3/extension-module"]
module-name = "tiffwrite.tiffwrite_rs"
[tool.isort]
line_length = 119