gac 0.19.0__tar.gz → 0.19.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.
Potentially problematic release.
This version of gac might be problematic. Click here for more details.
- {gac-0.19.0 → gac-0.19.1}/PKG-INFO +12 -12
- {gac-0.19.0 → gac-0.19.1}/pyproject.toml +11 -11
- {gac-0.19.0 → gac-0.19.1}/src/gac/__version__.py +1 -1
- {gac-0.19.0 → gac-0.19.1}/.gitignore +0 -0
- {gac-0.19.0 → gac-0.19.1}/LICENSE +0 -0
- {gac-0.19.0 → gac-0.19.1}/README.md +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/__init__.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/ai.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/cli.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/config.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/config_cli.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/constants.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/diff_cli.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/errors.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/git.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/init_cli.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/main.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/preprocess.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/prompt.py +0 -0
- {gac-0.19.0 → gac-0.19.1}/src/gac/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gac
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.1
|
|
4
4
|
Summary: AI-powered Git commit message generator with multi-provider support
|
|
5
5
|
Project-URL: Homepage, https://github.com/cellwebb/gac
|
|
6
6
|
Project-URL: Documentation, https://github.com/cellwebb/gac#readme
|
|
@@ -20,20 +20,20 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
20
20
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
21
21
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
22
22
|
Requires-Python: >=3.10
|
|
23
|
-
Requires-Dist: aisuite
|
|
24
|
-
Requires-Dist: anthropic
|
|
25
|
-
Requires-Dist: cerebras-cloud-sdk
|
|
26
|
-
Requires-Dist: click
|
|
23
|
+
Requires-Dist: aisuite>=0.1.11
|
|
24
|
+
Requires-Dist: anthropic>=0.68.0
|
|
25
|
+
Requires-Dist: cerebras-cloud-sdk==1.49.0
|
|
26
|
+
Requires-Dist: click>=8.3.0
|
|
27
27
|
Requires-Dist: docstring-parser
|
|
28
|
-
Requires-Dist: groq
|
|
28
|
+
Requires-Dist: groq>=0.31.1
|
|
29
29
|
Requires-Dist: halo
|
|
30
|
-
Requires-Dist: ollama
|
|
31
|
-
Requires-Dist: openai
|
|
32
|
-
Requires-Dist: pydantic
|
|
33
|
-
Requires-Dist: python-dotenv
|
|
30
|
+
Requires-Dist: ollama>=0.5.4
|
|
31
|
+
Requires-Dist: openai>=1.108.1
|
|
32
|
+
Requires-Dist: pydantic>=2.11.9
|
|
33
|
+
Requires-Dist: python-dotenv>=1.1.1
|
|
34
34
|
Requires-Dist: questionary
|
|
35
|
-
Requires-Dist: rich
|
|
36
|
-
Requires-Dist: tiktoken
|
|
35
|
+
Requires-Dist: rich>=14.1.0
|
|
36
|
+
Requires-Dist: tiktoken>=0.11.0
|
|
37
37
|
Provides-Extra: dev
|
|
38
38
|
Requires-Dist: build; extra == 'dev'
|
|
39
39
|
Requires-Dist: bump-my-version; extra == 'dev'
|
|
@@ -25,24 +25,24 @@ classifiers = [
|
|
|
25
25
|
]
|
|
26
26
|
dependencies = [
|
|
27
27
|
# AI components - base providers
|
|
28
|
-
"aisuite",
|
|
29
|
-
"anthropic",
|
|
30
|
-
"cerebras_cloud_sdk",
|
|
31
|
-
"groq",
|
|
32
|
-
"ollama",
|
|
33
|
-
"openai",
|
|
34
|
-
"tiktoken",
|
|
28
|
+
"aisuite>=0.1.11",
|
|
29
|
+
"anthropic>=0.68.0",
|
|
30
|
+
"cerebras_cloud_sdk==1.49.0",
|
|
31
|
+
"groq>=0.31.1",
|
|
32
|
+
"ollama>=0.5.4",
|
|
33
|
+
"openai>=1.108.1",
|
|
34
|
+
"tiktoken>=0.11.0",
|
|
35
35
|
|
|
36
36
|
# Core functionality
|
|
37
|
-
"pydantic",
|
|
38
|
-
"python-dotenv",
|
|
37
|
+
"pydantic>=2.11.9",
|
|
38
|
+
"python-dotenv>=1.1.1",
|
|
39
39
|
"docstring_parser", # needed by aisuite but not in their deps
|
|
40
40
|
|
|
41
41
|
# CLI and formatting
|
|
42
|
-
"click",
|
|
42
|
+
"click>=8.3.0",
|
|
43
43
|
"halo",
|
|
44
44
|
"questionary",
|
|
45
|
-
"rich",
|
|
45
|
+
"rich>=14.1.0",
|
|
46
46
|
]
|
|
47
47
|
|
|
48
48
|
[project.scripts]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|