20 lines
396 B
Python
20 lines
396 B
Python
"""
|
|
Microscopy Object Detection Application
|
|
|
|
A desktop application for detecting and segmenting organelles and membrane
|
|
branching structures in microscopy images using YOLOv8-seg.
|
|
"""
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "Your Name"
|
|
__email__ = "your.email@example.com"
|
|
__license__ = "MIT"
|
|
|
|
# Package metadata
|
|
__all__ = [
|
|
"__version__",
|
|
"__author__",
|
|
"__email__",
|
|
"__license__",
|
|
]
|