Coverage for src/pytribeam/__init__.py: 60%
5 statements
« prev ^ index » next coverage.py v7.6.1, created at 2026-06-16 18:30 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2026-06-16 18:30 +0000
1"""Automated tools for serial sectioning in the SEM."""
3try:
4 from ._version import version as __version__
5except ImportError:
6 __version__ = "0.0.0+unknown"
9# Modules to generate docs for with pdocs
10__all__ = [
11 "image",
12 "laser",
13 "fib",
14 "stage",
15 "insertable_devices",
16 "types",
17 "utilities",
18 "command_line",
19 "constants",
20 "factory",
21 "log",
22 "workflow",
23]