From b5b0eb16d860796938c6de23f5365655d4f2476b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 17:13:57 +0000 Subject: [PATCH] Initial upload: Add repohealth-cli project with CI/CD workflow --- src/repohealth/analyzers/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/repohealth/analyzers/__init__.py diff --git a/src/repohealth/analyzers/__init__.py b/src/repohealth/analyzers/__init__.py new file mode 100644 index 0000000..bcb013d --- /dev/null +++ b/src/repohealth/analyzers/__init__.py @@ -0,0 +1,7 @@ +"""Analysis modules for repository health assessment.""" + +from repohealth.analyzers.git_analyzer import GitAnalyzer +from repohealth.analyzers.bus_factor import BusFactorCalculator +from repohealth.analyzers.risk_analyzer import RiskAnalyzer + +__all__ = ["GitAnalyzer", "BusFactorCalculator", "RiskAnalyzer"]