31 lines
757 B
TOML
31 lines
757 B
TOML
[tool.poetry]
|
|
name = "tiffwrite"
|
|
version = "2023.3.0"
|
|
description = "Parallel tiff writer compatible with ImageJ."
|
|
authors = ["Wim Pomp, Lenstra lab NKI <w.pomp@nki.nl>"]
|
|
license = "GPLv3"
|
|
readme = "README.md"
|
|
packages = [{include = "tiffwrite"}]
|
|
repository = "https://github.com/wimpomp/tiffwrite"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
tifffile = "*"
|
|
numpy = "*"
|
|
tqdm = "*"
|
|
colorcet = "*"
|
|
matplotlib = "*"
|
|
pytest = { version = "*", optional = true }
|
|
|
|
[tool.poetry.extras]
|
|
test = ["pytest"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|