[tool.poetry] name = "tiffwrite" version = "2024.10.0" description = "Parallel tiff writer compatible with ImageJ." authors = ["Wim Pomp, Lenstra lab NKI "] license = "GPL-3.0-or-later" readme = "README.md" packages = [{include = "tiffwrite"}] repository = "https://github.com/wimpomp/tiffwrite" [tool.poetry.dependencies] python = "^3.10" tifffile = "*" imagecodecs = "*" numpy = "*" tqdm = "*" colorcet = "*" matplotlib = "*" parfor = ">=2024.9.2" pytest = { version = "*", optional = true } mypy = { version = "*", optional = true } [tool.poetry.extras] test = ["pytest", "mypy"] [tool.pytest.ini_options] filterwarnings = ["ignore:::(?!tiffwrite)"] [tool.isort] line_length = 119 [tool.mypy] disable_error_code = ["import-untyped", "return"] implicit_optional = true exclude = ["build"] [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"