@@ -0,0 +1,17 @@
+"""
+表格线生成器模块
+提供 OCR 数据解析、表格结构分析、线条编辑和批量处理功能
+
+from .core.ocr_parser import OcrParser
+from .core.table_analyzer import TableAnalyzer
+from .core.drawing_service import DrawingService
+__all__ = [
+ 'OcrParser',
+ 'TableAnalyzer',
+ 'DrawingService',
+]
+__version__ = '0.1.0'