git-commit-msg-ai 2.1.0__py3-none-any.whl → 2.1.2__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.
- {git_commit_msg_ai-2.1.0.dist-info → git_commit_msg_ai-2.1.2.dist-info}/METADATA +46 -8
- {git_commit_msg_ai-2.1.0.dist-info → git_commit_msg_ai-2.1.2.dist-info}/RECORD +6 -5
- git_commit_msg_ai-2.1.2.dist-info/licenses/LICENSE +21 -0
- {git_commit_msg_ai-2.1.0.dist-info → git_commit_msg_ai-2.1.2.dist-info}/WHEEL +0 -0
- {git_commit_msg_ai-2.1.0.dist-info → git_commit_msg_ai-2.1.2.dist-info}/entry_points.txt +0 -0
- {git_commit_msg_ai-2.1.0.dist-info → git_commit_msg_ai-2.1.2.dist-info}/top_level.txt +0 -0
|
@@ -1,10 +1,36 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: git-commit-msg-ai
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.2
|
|
4
4
|
Summary: AI-powered git commit message generator following Conventional Commits
|
|
5
|
-
License
|
|
5
|
+
License: MIT License
|
|
6
|
+
|
|
7
|
+
Copyright (c) 2026 Ankit Joshi
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
+
in the Software without restriction, including without limitation the rights
|
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
+
furnished to do so, subject to the following conditions:
|
|
15
|
+
|
|
16
|
+
The above copyright notice and this permission notice shall be included in all
|
|
17
|
+
copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
+
SOFTWARE.
|
|
26
|
+
|
|
27
|
+
Classifier: Programming Language :: Python :: 3
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
29
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
30
|
+
Classifier: Operating System :: OS Independent
|
|
6
31
|
Requires-Python: >=3.14
|
|
7
32
|
Description-Content-Type: text/markdown
|
|
33
|
+
License-File: LICENSE
|
|
8
34
|
Requires-Dist: anthropic
|
|
9
35
|
Provides-Extra: dev
|
|
10
36
|
Requires-Dist: mypy; extra == "dev"
|
|
@@ -13,11 +39,18 @@ Requires-Dist: pytest; extra == "dev"
|
|
|
13
39
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
14
40
|
Requires-Dist: build; extra == "dev"
|
|
15
41
|
Requires-Dist: twine; extra == "dev"
|
|
42
|
+
Dynamic: license-file
|
|
16
43
|
|
|
17
44
|
# git-commit-msg-ai
|
|
18
45
|
|
|
19
46
|
AI-powered git commit message generator that follows the [Conventional Commits](https://www.conventionalcommits.org/) specification.
|
|
20
47
|
|
|
48
|
+
[](https://github.com/ankit-d-joshi/git-commit-msg-ai/actions/workflows/ci.yml)
|
|
49
|
+
[](https://pypi.org/project/git-commit-msg-ai/)
|
|
50
|
+
[](https://pypi.org/project/git-commit-msg-ai/)
|
|
51
|
+
[](https://opensource.org/licenses/MIT)
|
|
52
|
+
[](https://pepy.tech/project/git-commit-msg-ai)
|
|
53
|
+
|
|
21
54
|
## Prerequisites
|
|
22
55
|
|
|
23
56
|
- Python 3.14+
|
|
@@ -58,9 +91,10 @@ pip install -e ".[dev]"
|
|
|
58
91
|
After activation the `git-commit-msg-ai` entry-point is on your PATH. You can also run the dev toolchain:
|
|
59
92
|
|
|
60
93
|
```sh
|
|
61
|
-
pytest
|
|
62
|
-
ruff check .
|
|
63
|
-
|
|
94
|
+
pytest # run tests with coverage
|
|
95
|
+
ruff check . # lint
|
|
96
|
+
ruff format --check . # format check
|
|
97
|
+
mypy . # type-check
|
|
64
98
|
```
|
|
65
99
|
|
|
66
100
|
## Installation
|
|
@@ -174,11 +208,11 @@ Pushing a version tag (e.g. `v1.5.2`) triggers the CD pipeline:
|
|
|
174
208
|
# 1. Bump the version in pyproject.toml
|
|
175
209
|
# 2. Commit and push
|
|
176
210
|
git add pyproject.toml
|
|
177
|
-
git commit -m "chore: bump version to
|
|
211
|
+
git commit -m "chore: bump version to 2.2.0"
|
|
178
212
|
git push origin main
|
|
179
213
|
# 3. Tag and push - this triggers the CD pipeline
|
|
180
|
-
git tag
|
|
181
|
-
git push origin
|
|
214
|
+
git tag v2.2.0
|
|
215
|
+
git push origin v2.2.0
|
|
182
216
|
```
|
|
183
217
|
|
|
184
218
|
## Debugging
|
|
@@ -202,3 +236,7 @@ git-commit-msg-ai
|
|
|
202
236
|
| `INFO` | commit message generated (with char count), commit created |
|
|
203
237
|
| `WARNING` | no staged changes found |
|
|
204
238
|
| `ERROR` | git not found, API failures, editor errors |
|
|
239
|
+
|
|
240
|
+
## License
|
|
241
|
+
|
|
242
|
+
This project is released under the [MIT License](LICENSE).
|
|
@@ -5,8 +5,9 @@ git_commit_msg_ai/config.py,sha256=auD_QRw-8ngRz2p1DT5L5G5riszegZItSasmczv5W2s,2
|
|
|
5
5
|
git_commit_msg_ai/editor.py,sha256=wW7TJ4zVvvN7ThLtrJthAf9FjdmIDTbBS7V5pIW490s,2143
|
|
6
6
|
git_commit_msg_ai/exceptions.py,sha256=7Hwluf3zHMjs4lpGktWS-Lwgo8y_4Xbb1WqzPQHkkUA,352
|
|
7
7
|
git_commit_msg_ai/git_ops.py,sha256=qZae4w3IEf3Lmf2T5oWItkgM0PrEYHCWr3TgBJLeecY,1387
|
|
8
|
-
git_commit_msg_ai-2.1.
|
|
9
|
-
git_commit_msg_ai-2.1.
|
|
10
|
-
git_commit_msg_ai-2.1.
|
|
11
|
-
git_commit_msg_ai-2.1.
|
|
12
|
-
git_commit_msg_ai-2.1.
|
|
8
|
+
git_commit_msg_ai-2.1.2.dist-info/licenses/LICENSE,sha256=BBR2CbV1SRenzTi4vvRx5wTIg32q898vdAyaLDN5wDc,1068
|
|
9
|
+
git_commit_msg_ai-2.1.2.dist-info/METADATA,sha256=ruzgyY3xmA2u6xkvbEZI2jbC0Jm7jXhqIGHjKkJCO2w,8310
|
|
10
|
+
git_commit_msg_ai-2.1.2.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
11
|
+
git_commit_msg_ai-2.1.2.dist-info/entry_points.txt,sha256=KTu6wUhl0p3nf27k8L4vpSH_hpeRQpwzMPSmKv7K5Cs,65
|
|
12
|
+
git_commit_msg_ai-2.1.2.dist-info/top_level.txt,sha256=XYQC2BXvrcREGKEG7sm9nbwO7ifqcUSVgU7SW8BTURs,18
|
|
13
|
+
git_commit_msg_ai-2.1.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Ankit Joshi
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|