- use tokio instead of os threads
PyTest / pytest (3.10) (push) Successful in 7m3s
PyTest / pytest (3.12) (push) Successful in 1m29s
PyTest / pytest (3.14) (push) Successful in 1m27s

- buffer writes
- also write in parallel
This commit is contained in:
w.pomp
2026-05-08 18:55:07 +02:00
parent 8883ae7e5e
commit 2fc0bf8c9f
9 changed files with 456 additions and 449 deletions
+12 -14
View File
@@ -1,29 +1,27 @@
[build-system]
requires = ["maturin>=1.5,<2.0"]
requires = ["maturin>=1.9.4,<2.0"]
build-backend = "maturin"
[project]
name = "tiffwrite"
dynamic = ["version"]
authors = [
{ name = "Wim Pomp", email = "w.pomp@nki.nl" }
dynamic = [
"version",
"description",
"readme",
"license",
"license-files",
"authors",
"maintainers",
"keywords",
"urls",
]
license = "MIT"
readme = "README.md"
keywords = ["bioformats", "tiff", "ndarray", "zstd", "fiji"]
description = "Write BioFormats/ImageJ compatible tiffs with zstd compression in parallel."
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = ["numpy", "tqdm"]