gitflow-analytics 3.6.2__py3-none-any.whl → 3.7.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gitflow_analytics/__init__.py +8 -12
- gitflow_analytics/_version.py +1 -1
- gitflow_analytics/cli.py +323 -203
- gitflow_analytics/cli_wizards/install_wizard.py +5 -5
- gitflow_analytics/config/repository.py +9 -1
- gitflow_analytics/config/schema.py +39 -0
- gitflow_analytics/identity_llm/analysis_pass.py +7 -2
- gitflow_analytics/models/database.py +229 -8
- {gitflow_analytics-3.6.2.dist-info → gitflow_analytics-3.7.4.dist-info}/METADATA +2 -4
- {gitflow_analytics-3.6.2.dist-info → gitflow_analytics-3.7.4.dist-info}/RECORD +14 -27
- gitflow_analytics/tui/__init__.py +0 -5
- gitflow_analytics/tui/app.py +0 -726
- gitflow_analytics/tui/progress_adapter.py +0 -313
- gitflow_analytics/tui/screens/__init__.py +0 -8
- gitflow_analytics/tui/screens/analysis_progress_screen.py +0 -857
- gitflow_analytics/tui/screens/configuration_screen.py +0 -523
- gitflow_analytics/tui/screens/loading_screen.py +0 -348
- gitflow_analytics/tui/screens/main_screen.py +0 -321
- gitflow_analytics/tui/screens/results_screen.py +0 -735
- gitflow_analytics/tui/widgets/__init__.py +0 -7
- gitflow_analytics/tui/widgets/data_table.py +0 -255
- gitflow_analytics/tui/widgets/export_modal.py +0 -301
- gitflow_analytics/tui/widgets/progress_widget.py +0 -187
- {gitflow_analytics-3.6.2.dist-info → gitflow_analytics-3.7.4.dist-info}/WHEEL +0 -0
- {gitflow_analytics-3.6.2.dist-info → gitflow_analytics-3.7.4.dist-info}/entry_points.txt +0 -0
- {gitflow_analytics-3.6.2.dist-info → gitflow_analytics-3.7.4.dist-info}/licenses/LICENSE +0 -0
- {gitflow_analytics-3.6.2.dist-info → gitflow_analytics-3.7.4.dist-info}/top_level.txt +0 -0
gitflow_analytics/__init__.py
CHANGED
|
@@ -5,20 +5,16 @@ from ._version import __version__, __version_info__
|
|
|
5
5
|
__author__ = "Bob Matyas"
|
|
6
6
|
__email__ = "bobmatnyc@gmail.com"
|
|
7
7
|
|
|
8
|
-
from
|
|
9
|
-
|
|
10
|
-
from .core.
|
|
11
|
-
from .
|
|
12
|
-
from .
|
|
13
|
-
from .
|
|
8
|
+
# Heavy imports removed from package __init__ for CLI performance
|
|
9
|
+
# Import these directly when needed in your code:
|
|
10
|
+
# from gitflow_analytics.core.analyzer import GitAnalyzer
|
|
11
|
+
# from gitflow_analytics.core.cache import GitAnalysisCache
|
|
12
|
+
# from gitflow_analytics.core.identity import DeveloperIdentityResolver
|
|
13
|
+
# from gitflow_analytics.extractors.story_points import StoryPointExtractor
|
|
14
|
+
# from gitflow_analytics.extractors.tickets import TicketExtractor
|
|
15
|
+
# from gitflow_analytics.reports.csv_writer import CSVReportGenerator
|
|
14
16
|
|
|
15
17
|
__all__ = [
|
|
16
18
|
"__version__",
|
|
17
19
|
"__version_info__",
|
|
18
|
-
"GitAnalyzer",
|
|
19
|
-
"GitAnalysisCache",
|
|
20
|
-
"DeveloperIdentityResolver",
|
|
21
|
-
"StoryPointExtractor",
|
|
22
|
-
"TicketExtractor",
|
|
23
|
-
"CSVReportGenerator",
|
|
24
20
|
]
|
gitflow_analytics/_version.py
CHANGED