- Make bioformats optional because jpype can cause problems

- Ruff format
This commit is contained in:
Wim Pomp
2025-08-06 11:03:03 +02:00
parent 3346ed3a48
commit 1fe3b3c824
17 changed files with 1223 additions and 794 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "ndbioimage"
version = "2025.3.2"
version = "2025.8.0"
description = "Bio image reading, metadata and some affine registration."
authors = [
{ name = "W. Pomp", email = "w.pomp@nki.nl" }
@@ -15,7 +15,6 @@ exclude = ["ndbioimage/jars"]
dependencies = [
"czifile == 2019.7.2",
"imagecodecs",
"JPype1",
"lxml",
"numpy >= 1.20",
"ome-types",
@@ -33,6 +32,7 @@ dependencies = [
[project.optional-dependencies]
test = ["pytest"]
write = ["matplotlib", "scikit-video"]
bioformats = ["JPype1"]
[project.urls]
repository = "https://github.com/wimpomp/ndbioimage"
@@ -46,6 +46,10 @@ filterwarnings = ["ignore:::(colorcet)"]
[tool.isort]
line_length = 119
[tool.ruff]
line-length = 119
indent-width = 4
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"