commit-maker 0.1.0__tar.gz → 0.1.2__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.
- {commit_maker-0.1.0/src/commit_maker.egg-info → commit_maker-0.1.2}/PKG-INFO +8 -7
- {commit_maker-0.1.0 → commit_maker-0.1.2}/README.md +3 -3
- {commit_maker-0.1.0 → commit_maker-0.1.2}/pyproject.toml +14 -21
- {commit_maker-0.1.0 → commit_maker-0.1.2}/setup.py +1 -1
- {commit_maker-0.1.0 → commit_maker-0.1.2/src/commit_maker.egg-info}/PKG-INFO +8 -7
- {commit_maker-0.1.0 → commit_maker-0.1.2}/src/commit_maker.egg-info/SOURCES.txt +0 -1
- commit_maker-0.1.0/src/commit_maker.egg-info/requires.txt +0 -2
- {commit_maker-0.1.0 → commit_maker-0.1.2}/LICENSE +0 -0
- {commit_maker-0.1.0 → commit_maker-0.1.2}/setup.cfg +0 -0
- {commit_maker-0.1.0 → commit_maker-0.1.2}/src/commit_maker/__init__.py +0 -0
- {commit_maker-0.1.0 → commit_maker-0.1.2}/src/commit_maker/main.py +0 -0
- {commit_maker-0.1.0 → commit_maker-0.1.2}/src/commit_maker.egg-info/dependency_links.txt +0 -0
- {commit_maker-0.1.0 → commit_maker-0.1.2}/src/commit_maker.egg-info/entry_points.txt +0 -0
- {commit_maker-0.1.0 → commit_maker-0.1.2}/src/commit_maker.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: commit_maker
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: CLI-утилита для генерации git-коммитов с помощью ИИ
|
|
5
5
|
Author: Alex Bulgakov
|
|
6
6
|
Author-email: Alex Bulgakov <sashayerty@ya.ru>
|
|
@@ -8,8 +8,9 @@ License: MIT
|
|
|
8
8
|
Requires-Python: >=3.8
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
Dynamic: requires-python
|
|
13
14
|
|
|
14
15
|
# Commit Maker [](https://www.python.org/) [](https://docs.astral.sh/uv/) [](https://ollama.com/)
|
|
15
16
|
|
|
@@ -56,9 +57,9 @@ Requires-Dist: twine>=6.1.0
|
|
|
56
57
|
|
|
57
58
|
```bash
|
|
58
59
|
# Windows
|
|
59
|
-
pip install
|
|
60
|
+
pip install commit_maker
|
|
60
61
|
# Linux/MacOS
|
|
61
|
-
pip3 install
|
|
62
|
+
pip3 install commit_maker
|
|
62
63
|
```
|
|
63
64
|
|
|
64
65
|
## Настройка переменных окружения
|
|
@@ -94,7 +95,7 @@ pip3 install git+https://github.com/sashayerty/commit_maker
|
|
|
94
95
|
### Windows
|
|
95
96
|
|
|
96
97
|
```cmd
|
|
97
|
-
commit_maker
|
|
98
|
+
commit_maker [OPTION] [VALUE]
|
|
98
99
|
```
|
|
99
100
|
|
|
100
101
|
### Linux/MacOS
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
45
|
# Windows
|
|
46
|
-
pip install
|
|
46
|
+
pip install commit_maker
|
|
47
47
|
# Linux/MacOS
|
|
48
|
-
pip3 install
|
|
48
|
+
pip3 install commit_maker
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
## Настройка переменных окружения
|
|
@@ -81,7 +81,7 @@ pip3 install git+https://github.com/sashayerty/commit_maker
|
|
|
81
81
|
### Windows
|
|
82
82
|
|
|
83
83
|
```cmd
|
|
84
|
-
commit_maker
|
|
84
|
+
commit_maker [OPTION] [VALUE]
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
### Linux/MacOS
|
|
@@ -1,21 +1,14 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "commit_maker"
|
|
3
|
-
version = "0.1.
|
|
4
|
-
authors = [
|
|
5
|
-
{ name="Alex Bulgakov", email="sashayerty@ya.ru" }
|
|
6
|
-
]
|
|
7
|
-
description = "CLI-утилита для генерации git-коммитов с помощью ИИ"
|
|
8
|
-
readme = "README.md"
|
|
9
|
-
license = { text = "MIT" }
|
|
10
|
-
requires-python = ">=3.8"
|
|
11
|
-
dependencies = [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
[project.scripts]
|
|
17
|
-
commit_maker = "commit_maker.main:main"
|
|
18
|
-
|
|
19
|
-
[build-system]
|
|
20
|
-
requires = ["setuptools>=61.0"]
|
|
21
|
-
build-backend = "setuptools.build_meta"
|
|
1
|
+
[project]
|
|
2
|
+
name = "commit_maker"
|
|
3
|
+
version = "0.1.2"
|
|
4
|
+
authors = [
|
|
5
|
+
{ name="Alex Bulgakov", email="sashayerty@ya.ru" }
|
|
6
|
+
]
|
|
7
|
+
description = "CLI-утилита для генерации git-коммитов с помощью ИИ"
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
license = { text = "MIT" }
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
dependencies = []
|
|
12
|
+
|
|
13
|
+
[project.scripts]
|
|
14
|
+
commit_maker = "commit_maker.main:main"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: commit_maker
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: CLI-утилита для генерации git-коммитов с помощью ИИ
|
|
5
5
|
Author: Alex Bulgakov
|
|
6
6
|
Author-email: Alex Bulgakov <sashayerty@ya.ru>
|
|
@@ -8,8 +8,9 @@ License: MIT
|
|
|
8
8
|
Requires-Python: >=3.8
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
Dynamic: requires-python
|
|
13
14
|
|
|
14
15
|
# Commit Maker [](https://www.python.org/) [](https://docs.astral.sh/uv/) [](https://ollama.com/)
|
|
15
16
|
|
|
@@ -56,9 +57,9 @@ Requires-Dist: twine>=6.1.0
|
|
|
56
57
|
|
|
57
58
|
```bash
|
|
58
59
|
# Windows
|
|
59
|
-
pip install
|
|
60
|
+
pip install commit_maker
|
|
60
61
|
# Linux/MacOS
|
|
61
|
-
pip3 install
|
|
62
|
+
pip3 install commit_maker
|
|
62
63
|
```
|
|
63
64
|
|
|
64
65
|
## Настройка переменных окружения
|
|
@@ -94,7 +95,7 @@ pip3 install git+https://github.com/sashayerty/commit_maker
|
|
|
94
95
|
### Windows
|
|
95
96
|
|
|
96
97
|
```cmd
|
|
97
|
-
commit_maker
|
|
98
|
+
commit_maker [OPTION] [VALUE]
|
|
98
99
|
```
|
|
99
100
|
|
|
100
101
|
### Linux/MacOS
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|