Files
project-context-generator/src/contextgen/analyzers/__init__.py
7000pctAUTO 70b704a789
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
Add project and language analyzers
2026-01-29 13:21:17 +00:00

24 lines
953 B
Python

"""Analyzers module for project structure and convention detection."""
from contextgen.analyzers.base import BaseAnalyzer
from contextgen.analyzers.project_analyzer import ProjectAnalyzer
from contextgen.analyzers.language_detector import LanguageDetector
from contextgen.analyzers.framework_detector import FrameworkDetector
from contextgen.analyzers.convention_extractor import ConventionExtractor
from contextgen.analyzers.naming_analyzer import NamingConventionAnalyzer
from contextgen.analyzers.style_analyzer import StyleAnalyzer
from contextgen.analyzers.documentation_analyzer import DocumentationPatternAnalyzer
from contextgen.analyzers.setup_generator import SetupInstructionGenerator
__all__ = [
"BaseAnalyzer",
"ProjectAnalyzer",
"LanguageDetector",
"FrameworkDetector",
"ConventionExtractor",
"NamingConventionAnalyzer",
"StyleAnalyzer",
"DocumentationPatternAnalyzer",
"SetupInstructionGenerator",
]