Skip to content

Commit

Permalink
Merge pull request #80 from sameeul/ts_backend_PR
Browse files Browse the repository at this point in the history
Add tensorstore backend
  • Loading branch information
sameeul committed Apr 30, 2024
2 parents 528f93f + 178cab4 commit 72c5784
Show file tree
Hide file tree
Showing 9 changed files with 856 additions and 557 deletions.
6 changes: 4 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
author = "Nicholas J Schaub"

# The full version, including alpha/beta/rc tags
with open(str(Path(__file__).parent.parent.parent.joinpath("src/bfio/VERSION")), "r") as fr:
with open(
str(Path(__file__).parent.parent.parent.joinpath("src/bfio/VERSION")), "r"
) as fr:
release = fr.readline()

# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -69,7 +71,7 @@

autodoc_default_options = {
"members": True,
"special-members": "__getitem__,__call__,__setitem__"
"special-members": "__getitem__,__call__,__setitem__",
# 'exclude-members': '__weakref__'
}

Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ requires = [
"zarr>=2.6.1",
"scyjava",
"jpype1",
"tifffile>=2022.8.12"
"tifffile>=2022.8.12",
"bfiocpp"
]
build-backend = "setuptools.build_meta"

Expand All @@ -25,7 +26,8 @@ dependencies = [
"zarr>=2.6.1",
"scyjava",
"jpype1",
"tifffile>=2022.8.12"
"tifffile>=2022.8.12",
"bfiocpp"
]

description = "Simple reading and writing classes for tiled tiffs using Bio-Formats."
Expand Down
3 changes: 2 additions & 1 deletion src/bfio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@
logger.info("VERSION = {}".format(__version__))


from .bfio import BioReader, BioWriter, start # NOQA: F401, E402
from .bfio import BioReader, BioWriter # NOQA: F401, E402
from .utils import start # NOQA: F401, E402
Loading

0 comments on commit 72c5784

Please sign in to comment.