#!/usr/bin/env python3 """ Launcher for BMAD Novel Translator UI. Run this script to start the graphical user interface. """ import sys from pathlib import Path # Add src directory to Python path src_path = Path(__file__).parent / "src" sys.path.insert(0, str(src_path)) from ui.application import main if __name__ == "__main__": sys.exit(main())