Files
ndbioimage/pyproject.toml
Wim Pomp bdd7a5399c - set dtype according to pixel type in file
- cziread bugfix
- add reader for broken files saved by Fiji
- make ndread work for arrays with less dimensions than 5
- relative imports
- remove some old functions
- make bfread check if it can open the file
2023-08-14 17:01:03 +02:00

39 lines
837 B
TOML

[tool.poetry]
name = "ndbioimage"
version = "2023.7.4"
description = "Bio image reading, metadata and some affine registration."
authors = ["W. Pomp <w.pomp@nki.nl>"]
license = "GPLv3"
readme = "README.md"
keywords = ["bioformats", "imread", "numpy", "metadata"]
include = ["transform.txt"]
repository = "https://github.com/wimpomp/ndbioimage"
exclude = [ "ndbioimage/jars" ]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
pandas = "*"
tifffile = "*"
czifile = "*"
tiffwrite = "*"
ome-types = "*"
pint = "*"
tqdm = "*"
lxml = "*"
pyyaml = "*"
parfor = "*"
JPype1 = "*"
SimpleITK-SimpleElastix = "*"
pytest = { version = "*", optional = true }
[tool.poetry.extras]
test = ["pytest-xdist"]
[tool.poetry.scripts]
ndbioimage = "ndbioimage:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"