microlive 1.0.11__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.
microlive/__init__.py ADDED
@@ -0,0 +1,50 @@
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ MicroLive - Live-cell microscopy image analysis toolkit
4
+
5
+ A Python-based GUI application for live-cell microscopy image analysis
6
+ and single-molecule measurements.
7
+
8
+ Example usage:
9
+ # Programmatic API
10
+ from microlive import microscopy as mi
11
+ # Or: import microlive.microscopy as mi
12
+
13
+ # Load and analyze images
14
+ reader = mi.ReadLif("experiment.lif")
15
+ images = reader.get_images()
16
+
17
+ # Run segmentation
18
+ seg = mi.CellSegmentation(images[0])
19
+ masks = seg.calculate_masks()
20
+
21
+ Authors:
22
+ Luis U. Aguilera, William S. Raymond, Rhiannon M. Sears,
23
+ Nathan L. Nowling, Brian Munsky, Ning Zhao
24
+ """
25
+
26
+ __version__ = "1.0.11"
27
+ __author__ = "Luis U. Aguilera, William S. Raymond, Rhiannon M. Sears, Nathan L. Nowling, Brian Munsky, Ning Zhao"
28
+
29
+ # Package name (for backward compatibility)
30
+ name = 'microlive'
31
+
32
+ # Direct submodule access (import these directly, not through __getattr__)
33
+ # Users should use:
34
+ # from microlive import microscopy as mi
35
+ # import microlive.microscopy as mi
36
+ # from microlive.microscopy import ReadLif
37
+ #
38
+ # Note: We intentionally do NOT import microscopy here to avoid
39
+ # circular imports with imports.py and slow startup times.
40
+
41
+ __all__ = [
42
+ "__version__",
43
+ "__author__",
44
+ # Submodules (listed for pdoc documentation discovery)
45
+ "microscopy",
46
+ "imports",
47
+ "pipelines",
48
+ "utils",
49
+ "gui",
50
+ ]
File without changes
File without changes
Binary file
File without changes
@@ -0,0 +1 @@
1
+ """MicroLive GUI module."""