napari-tmidas 0.1.5__py3-none-any.whl → 0.1.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
napari_tmidas/__init__.py CHANGED
@@ -6,6 +6,7 @@ except ImportError:
6
6
 
7
7
  from ._label_inspection import label_inspector_widget
8
8
  from ._reader import napari_get_reader
9
+ from ._roi_colocalization import roi_colocalization_analyzer
9
10
  from ._sample_data import make_sample_data
10
11
  from ._writer import write_multiple, write_single_image
11
12
 
@@ -16,4 +17,6 @@ __all__ = (
16
17
  "make_sample_data",
17
18
  "file_selector",
18
19
  "label_inspector_widget",
20
+ "batch_crop_anything_widget",
21
+ "roi_colocalization_analyzer",
19
22
  )