- Static __all__ for pyinstaller compatibility.

This commit is contained in:
Wim Pomp
2023-12-07 13:52:06 +01:00
parent cbeca59989
commit 735523aba0
2 changed files with 2 additions and 5 deletions

View File

@@ -1,4 +1 @@
from pathlib import Path __all__ = 'bfread', 'cziread', 'fijiread', 'ndread', 'seqread', 'tifread'
__all__ = [file.stem for file in Path(__file__).parent.iterdir()
if file.suffix == ".py" and not file == Path(__file__) and not file.stem.startswith('.')]

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "ndbioimage" name = "ndbioimage"
version = "2023.12.1" version = "2023.12.2"
description = "Bio image reading, metadata and some affine registration." description = "Bio image reading, metadata and some affine registration."
authors = ["W. Pomp <w.pomp@nki.nl>"] authors = ["W. Pomp <w.pomp@nki.nl>"]
license = "GPLv3" license = "GPLv3"