""" MelanoScope AI - Enterprise Skin Lesion Classification System A production-ready deep learning application for dermatoscopic analysis. """ __version__ = "1.0.0" __author__ = "Daniel Cavadia" __institution__ = "Universidad Central de Venezuela" from .core.model import MelanoScopeModel from .ui.components import MelanoScopeUI from .config.settings import ModelConfig, UIConfig, AppConfig __all__ = [ "MelanoScopeModel", "MelanoScopeUI", "ModelConfig", "UIConfig", "AppConfig" ]