Coverage for ezstitcher/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2025-04-30 13:20 +0000

1"""EZStitcher: An easy-to-use microscopy image stitching and processing tool.""" 

2 

3__version__ = "1.1.0" 

4 

5# Import simplified interface 

6from ezstitcher.ez import stitch_plate, EZStitcher 

7 

8__all__ = [ 

9 'stitch_plate', 

10 'EZStitcher', 

11]