Files
tiffwrite/pyproject.toml
2024-02-14 15:02:23 +01:00

31 lines
705 B
TOML

[tool.poetry]
name = "tiffwrite"
version = "2024.2.1"
description = "Parallel tiff writer compatible with ImageJ."
authors = ["Wim Pomp, Lenstra lab NKI <w.pomp@nki.nl>"]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [{include = "tiffwrite"}]
repository = "https://github.com/wimpomp/tiffwrite"
[tool.poetry.dependencies]
python = "^3.8"
tifffile = "*"
imagecodecs = "*"
numpy = "*"
tqdm = "*"
colorcet = "*"
matplotlib = "*"
parfor = ">=2023.10.1"
pytest = { version = "*", optional = true }
[tool.poetry.extras]
test = ["pytest"]
[tool.pytest.ini_options]
filterwarnings = ["ignore:::(?!tiffwrite)"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"