gitglimpse 0.1.0__tar.gz → 0.1.1__tar.gz
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.
- {gitglimpse-0.1.0 → gitglimpse-0.1.1}/PKG-INFO +1 -1
- {gitglimpse-0.1.0 → gitglimpse-0.1.1}/pyproject.toml +2 -5
- gitglimpse-0.1.1/src/gitglimpse/__init__.py +1 -0
- gitglimpse-0.1.1/src/gitglimpse/cli.py +784 -0
- gitglimpse-0.1.1/src/gitglimpse/commands/__init__.py +1 -0
- gitglimpse-0.1.1/src/gitglimpse/config.py +64 -0
- gitglimpse-0.1.1/src/gitglimpse/estimation.py +77 -0
- gitglimpse-0.1.1/src/gitglimpse/formatters/__init__.py +0 -0
- gitglimpse-0.1.1/src/gitglimpse/formatters/json.py +124 -0
- gitglimpse-0.1.1/src/gitglimpse/formatters/markdown.py +65 -0
- gitglimpse-0.1.1/src/gitglimpse/formatters/template.py +141 -0
- gitglimpse-0.1.1/src/gitglimpse/git.py +342 -0
- gitglimpse-0.1.1/src/gitglimpse/grouping.py +198 -0
- gitglimpse-0.1.1/src/gitglimpse/onboarding.py +274 -0
- gitglimpse-0.1.1/src/gitglimpse/providers/__init__.py +59 -0
- gitglimpse-0.1.1/src/gitglimpse/providers/base.py +331 -0
- gitglimpse-0.1.1/src/gitglimpse/providers/claude.py +89 -0
- gitglimpse-0.1.1/src/gitglimpse/providers/gemini.py +85 -0
- gitglimpse-0.1.1/src/gitglimpse/providers/local.py +146 -0
- gitglimpse-0.1.1/src/gitglimpse/providers/openai.py +87 -0
- gitglimpse-0.1.1/src/gitglimpse/py.typed +0 -0
- {gitglimpse-0.1.0 → gitglimpse-0.1.1}/.gitignore +0 -0
- {gitglimpse-0.1.0 → gitglimpse-0.1.1}/LICENSE +0 -0
- {gitglimpse-0.1.0 → gitglimpse-0.1.1}/src/gitglimpse/commands/report.md +0 -0
- {gitglimpse-0.1.0 → gitglimpse-0.1.1}/src/gitglimpse/commands/standup.md +0 -0
- {gitglimpse-0.1.0 → gitglimpse-0.1.1}/src/gitglimpse/commands/week.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitglimpse
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Analyze git history and generate standup updates, daily reports, and weekly summaries.
|
|
5
5
|
Project-URL: Homepage, https://github.com/dino/gitglimpse
|
|
6
6
|
Project-URL: Repository, https://github.com/dino/gitglimpse
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "gitglimpse"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Analyze git history and generate standup updates, daily reports, and weekly summaries."
|
|
9
9
|
authors = [{ name = "Dino" }]
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -38,8 +38,5 @@ glimpse = "gitglimpse.cli:app"
|
|
|
38
38
|
[tool.hatch.build.targets.wheel]
|
|
39
39
|
packages = ["src/gitglimpse"]
|
|
40
40
|
|
|
41
|
-
[tool.hatch.build.targets.wheel.shared-data]
|
|
42
|
-
# Ensures .md templates are included in the wheel alongside Python files.
|
|
43
|
-
|
|
44
41
|
[tool.hatch.build.targets.sdist]
|
|
45
|
-
include = ["src/gitglimpse
|
|
42
|
+
include = ["src/gitglimpse/**"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.1"
|