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.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: commit_maker
3
- Version: 0.1.0
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
- Requires-Dist: setuptools>=75.3.2
12
- Requires-Dist: twine>=6.1.0
11
+ Dynamic: author
12
+ Dynamic: license-file
13
+ Dynamic: requires-python
13
14
 
14
15
  # Commit Maker [![Created with Python](https://img.shields.io/badge/Created_with-Python-blue)](https://www.python.org/) [![Created with uv](https://img.shields.io/badge/Created_with-uv-purple)](https://docs.astral.sh/uv/) [![Created with ollama](https://img.shields.io/badge/Created_with-ollama-white)](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 git+https://github.com/sashayerty/commit_maker
60
+ pip install commit_maker
60
61
  # Linux/MacOS
61
- pip3 install git+https://github.com/sashayerty/commit_maker
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.exe [OPTION] [VALUE]
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 git+https://github.com/sashayerty/commit_maker
46
+ pip install commit_maker
47
47
  # Linux/MacOS
48
- pip3 install git+https://github.com/sashayerty/commit_maker
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.exe [OPTION] [VALUE]
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.0"
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
- "setuptools>=75.3.2",
13
- "twine>=6.1.0",
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"
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
2
2
 
3
3
  setup(
4
4
  name="commit_maker",
5
- version="0.1.0",
5
+ version="0.1.2",
6
6
  author="Alex Bulgakov",
7
7
  author_email="sashayerty@ya.ru",
8
8
  description="CLI-утилита для генерации git-коммитов с помощью ИИ",
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: commit_maker
3
- Version: 0.1.0
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
- Requires-Dist: setuptools>=75.3.2
12
- Requires-Dist: twine>=6.1.0
11
+ Dynamic: author
12
+ Dynamic: license-file
13
+ Dynamic: requires-python
13
14
 
14
15
  # Commit Maker [![Created with Python](https://img.shields.io/badge/Created_with-Python-blue)](https://www.python.org/) [![Created with uv](https://img.shields.io/badge/Created_with-uv-purple)](https://docs.astral.sh/uv/) [![Created with ollama](https://img.shields.io/badge/Created_with-ollama-white)](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 git+https://github.com/sashayerty/commit_maker
60
+ pip install commit_maker
60
61
  # Linux/MacOS
61
- pip3 install git+https://github.com/sashayerty/commit_maker
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.exe [OPTION] [VALUE]
98
+ commit_maker [OPTION] [VALUE]
98
99
  ```
99
100
 
100
101
  ### Linux/MacOS
@@ -8,5 +8,4 @@ src/commit_maker.egg-info/PKG-INFO
8
8
  src/commit_maker.egg-info/SOURCES.txt
9
9
  src/commit_maker.egg-info/dependency_links.txt
10
10
  src/commit_maker.egg-info/entry_points.txt
11
- src/commit_maker.egg-info/requires.txt
12
11
  src/commit_maker.egg-info/top_level.txt
@@ -1,2 +0,0 @@
1
- setuptools>=75.3.2
2
- twine>=6.1.0
File without changes
File without changes