Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ dependencies = [
"xarray>=2024.10.0",
"zarr>=2.6.1,<3.0.0",
"spatialdata>=0.2.5",
"centrosome>=1.2.3",
"cp_measure>=0.1.4"
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/squidpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from importlib import metadata
from importlib.metadata import PackageMetadata

from squidpy import datasets, gr, im, pl, read, tl
from squidpy import datasets, exp, gr, im, pl, read, tl

try:
md: PackageMetadata = metadata.metadata(__name__)
Expand Down
11 changes: 11 additions & 0 deletions src/squidpy/exp/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Experimental module for Squidpy.

This module contains experimental features that are still under development.
These features may change or be removed in future releases.
"""

from __future__ import annotations

from squidpy.exp._feature import calculate_image_features

__all__ = ["calculate_image_features"]
Loading
Loading