project init.

This commit is contained in:
2026-02-03 22:48:22 +08:00
commit bf730377eb
14 changed files with 3141 additions and 0 deletions

20
src/__init__.py Normal file
View File

@@ -0,0 +1,20 @@
# src/__init__.py
"""
SRS 需求文档解析工具包
"""
__version__ = "1.0.0"
__author__ = "SRS Parser Team"
from .document_parser import DocumentParser
from .llm_interface import LLMInterface, QwenLLM
from .requirement_extractor import RequirementExtractor
from .json_generator import JSONGenerator
__all__ = [
'DocumentParser',
'LLMInterface',
'QwenLLM',
'RequirementExtractor',
'JSONGenerator'
]