Skip to content
Draft
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ dependencies = [
"tifffile>=2023.8.12",
"ome-types",
"xmltodict",
# CosMx reader
"polars",
"dask",
"zarr>=3",
]

[project.optional-dependencies]
Expand Down Expand Up @@ -188,6 +192,7 @@ lint.ignore = [
]
[tool.ruff.lint.per-file-ignores]
"src/spatialdata_io/__init__.py" = ["I001"]
"tests/*" = ["D"]

[tool.jupytext]
formats = "ipynb,md"
Expand Down
294 changes: 0 additions & 294 deletions src/spatialdata_io/readers/cosmx.py

This file was deleted.

7 changes: 7 additions & 0 deletions src/spatialdata_io/readers/cosmx/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""NanoString CosMx reader."""

from __future__ import annotations

from ._reader import cosmx

__all__ = ["cosmx"]
Loading
Loading