- __init__.py: derive __version__ from importlib.metadata instead of a hardcoded "0.1.0" that was six releases out of date - scheduler.py: move winnow.cli import to module top (no more noqa); clean up redundant bool variables in check_models - tests/test_quality.py: 17 tests covering all five quality check functions individually plus assess_quality integration cases Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
380 B
Python
14 lines
380 B
Python
"""Immich to Frigate training set curator.
|
|
|
|
AI-powered tool to extract high-quality, diverse training images from your
|
|
Immich library for Frigate's Face Recognition (ArcFace) and Object/State
|
|
Classification models.
|
|
"""
|
|
|
|
from importlib.metadata import PackageNotFoundError, version
|
|
|
|
try:
|
|
__version__ = version("winnow")
|
|
except PackageNotFoundError:
|
|
__version__ = "unknown"
|