tgit 0.4.3__tar.gz → 0.5.0__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.
tgit-0.5.0/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ build
2
+ dist
3
+ *.egg-info
4
+ *.egg
5
+ __pycache__
@@ -0,0 +1 @@
1
+ 3.12.5
tgit-0.5.0/.tgit.yml ADDED
@@ -0,0 +1,5 @@
1
+ commit:
2
+ emoji: true
3
+ types:
4
+ - type: fix
5
+ emoji: ":adhesive_bandage:"
@@ -0,0 +1,17 @@
1
+ {
2
+ "black-formatter.args": [
3
+ "--line-length",
4
+ "160"
5
+ ],
6
+ "[python]": {
7
+ "editor.defaultFormatter": "ms-python.black-formatter",
8
+ "editor.formatOnSave": true,
9
+ "editor.codeActionsOnSave": {
10
+ "source.organizeImports": "explicit"
11
+ },
12
+ },
13
+ "isort.args": [
14
+ "--profile",
15
+ "black"
16
+ ],
17
+ }
@@ -1,25 +1,23 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: tgit
3
- Version: 0.4.3
3
+ Version: 0.5.0
4
4
  Summary: Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze.
5
- License: MIT
6
- Keywords: git,tool,changelog,version,commit
7
- Author: Jannchie
8
- Author-email: jannchie@gmail.com
9
- Requires-Python: >=3.11,<4.0
5
+ Author-email: Jannchie <jannchie@gmail.com>
6
+ License-Expression: MIT
7
+ Keywords: changelog,commit,git,tool,version
10
8
  Classifier: Development Status :: 3 - Alpha
11
9
  Classifier: Intended Audience :: Developers
12
10
  Classifier: License :: OSI Approved :: MIT License
13
11
  Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.11
15
- Classifier: Programming Language :: Python :: 3.12
16
12
  Classifier: Topic :: Software Development :: Version Control
17
13
  Classifier: Topic :: Utilities
18
14
  Classifier: Typing :: Typed
19
- Requires-Dist: PyYAML (>=6.0.1,<7.0.0)
20
- Requires-Dist: gitpython (>=3.1.43,<4.0.0)
21
- Requires-Dist: inquirer (>=3.2.5,<4.0.0)
22
- Requires-Dist: rich (>=13.7.1,<14.0.0)
15
+ Requires-Python: >=3.8
16
+ Requires-Dist: gitpython
17
+ Requires-Dist: inquirer
18
+ Requires-Dist: openai>=1.51.0
19
+ Requires-Dist: pyyaml
20
+ Requires-Dist: rich
23
21
  Description-Content-Type: text/markdown
24
22
 
25
23
  # tgit
@@ -39,4 +37,3 @@ pip install tgit
39
37
  ```bash
40
38
  tgit --help
41
39
  ```
42
-
@@ -1,17 +1,17 @@
1
- # tgit
2
-
3
- [![CodeTime Badge](https://img.shields.io/endpoint?style=social&color=222&url=https%3A%2F%2Fapi.codetime.dev%2Fshield%3Fid%3D2%26project%3Dtgit%26in=0)](https://codetime.dev)
4
-
5
- Tool for managing git repositories.
6
-
7
- ## Installation
8
-
9
- ```bash
10
- pip install tgit
11
- ```
12
-
13
- ## Usage
14
-
15
- ```bash
16
- tgit --help
17
- ```
1
+ # tgit
2
+
3
+ [![CodeTime Badge](https://img.shields.io/endpoint?style=social&color=222&url=https%3A%2F%2Fapi.codetime.dev%2Fshield%3Fid%3D2%26project%3Dtgit%26in=0)](https://codetime.dev)
4
+
5
+ Tool for managing git repositories.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install tgit
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ tgit --help
17
+ ```
@@ -1,34 +1,43 @@
1
- [tool.poetry]
2
- name = "tgit"
3
- version = "0.4.3"
4
- description = "Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze."
5
- authors = ["Jannchie <jannchie@gmail.com>"]
6
- readme = "README.md"
7
- license = "MIT"
8
- keywords = ["git", "tool", "changelog", "version", "commit"]
9
- classifiers = [
10
- "Development Status :: 3 - Alpha",
11
- "Intended Audience :: Developers",
12
- "License :: OSI Approved :: MIT License",
13
- "Programming Language :: Python :: 3",
14
- "Topic :: Software Development :: Version Control",
15
- "Topic :: Utilities",
16
- "Typing :: Typed",
17
- ]
18
-
19
-
20
- [tool.poetry.dependencies]
21
- python = "^3.11"
22
- rich = "^13.7.1"
23
- PyYAML = "^6.0.1"
24
- inquirer = "^3.2.5"
25
- gitpython = "^3.1.43"
26
-
27
- [tool.poetry.scripts]
28
- tgit = "tgit.cli:main"
29
- gitt = "tgit.cli:main"
30
-
31
-
32
- [build-system]
33
- requires = ["poetry-core"]
34
- build-backend = "poetry.core.masonry.api"
1
+ [project]
2
+ name = "tgit"
3
+ version = "0.5.0"
4
+ description = "Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze."
5
+ authors = [{ name = "Jannchie", email = "jannchie@gmail.com" }]
6
+ dependencies = [
7
+ "rich",
8
+ "PyYAML",
9
+ "inquirer",
10
+ "gitpython",
11
+ "openai>=1.51.0",
12
+ ]
13
+ readme = "README.md"
14
+ requires-python = ">= 3.8"
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Topic :: Software Development :: Version Control",
21
+ "Topic :: Utilities",
22
+ "Typing :: Typed",
23
+ ]
24
+ keywords = ["git", "tool", "changelog", "version", "commit"]
25
+ license = "MIT"
26
+
27
+ [build-system]
28
+ requires = ["hatchling"]
29
+ build-backend = "hatchling.build"
30
+
31
+ [tool.rye]
32
+ managed = true
33
+ dev-dependencies = []
34
+
35
+ [tool.hatch.metadata]
36
+ allow-direct-references = true
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["tgit"]
40
+
41
+
42
+ [project.scripts]
43
+ tgit = "tgit:cli.main"
@@ -0,0 +1,82 @@
1
+ # generated by rye
2
+ # use `rye lock` or `rye sync` to update this lockfile
3
+ #
4
+ # last locked with the following flags:
5
+ # pre: false
6
+ # features: []
7
+ # all-features: false
8
+ # with-sources: false
9
+ # generate-hashes: false
10
+ # universal: false
11
+
12
+ -e file:.
13
+ annotated-types==0.7.0
14
+ # via pydantic
15
+ anyio==4.6.0
16
+ # via httpx
17
+ # via openai
18
+ blessed==1.20.0
19
+ # via inquirer
20
+ certifi==2024.8.30
21
+ # via httpcore
22
+ # via httpx
23
+ distro==1.9.0
24
+ # via openai
25
+ editor==1.6.6
26
+ # via inquirer
27
+ gitdb==4.0.11
28
+ # via gitpython
29
+ gitpython==3.1.43
30
+ # via tgit
31
+ h11==0.14.0
32
+ # via httpcore
33
+ httpcore==1.0.6
34
+ # via httpx
35
+ httpx==0.27.2
36
+ # via openai
37
+ idna==3.10
38
+ # via anyio
39
+ # via httpx
40
+ inquirer==3.4.0
41
+ # via tgit
42
+ jiter==0.5.0
43
+ # via openai
44
+ markdown-it-py==3.0.0
45
+ # via rich
46
+ mdurl==0.1.2
47
+ # via markdown-it-py
48
+ openai==1.51.0
49
+ # via tgit
50
+ pydantic==2.9.2
51
+ # via openai
52
+ pydantic-core==2.23.4
53
+ # via pydantic
54
+ pygments==2.18.0
55
+ # via rich
56
+ pyyaml==6.0.2
57
+ # via tgit
58
+ readchar==4.2.0
59
+ # via inquirer
60
+ rich==13.9.1
61
+ # via tgit
62
+ runs==1.2.2
63
+ # via editor
64
+ six==1.16.0
65
+ # via blessed
66
+ smmap==5.0.1
67
+ # via gitdb
68
+ sniffio==1.3.1
69
+ # via anyio
70
+ # via httpx
71
+ # via openai
72
+ tqdm==4.66.5
73
+ # via openai
74
+ typing-extensions==4.12.2
75
+ # via openai
76
+ # via pydantic
77
+ # via pydantic-core
78
+ wcwidth==0.2.13
79
+ # via blessed
80
+ xmod==1.8.1
81
+ # via editor
82
+ # via runs
@@ -0,0 +1,82 @@
1
+ # generated by rye
2
+ # use `rye lock` or `rye sync` to update this lockfile
3
+ #
4
+ # last locked with the following flags:
5
+ # pre: false
6
+ # features: []
7
+ # all-features: false
8
+ # with-sources: false
9
+ # generate-hashes: false
10
+ # universal: false
11
+
12
+ -e file:.
13
+ annotated-types==0.7.0
14
+ # via pydantic
15
+ anyio==4.6.0
16
+ # via httpx
17
+ # via openai
18
+ blessed==1.20.0
19
+ # via inquirer
20
+ certifi==2024.8.30
21
+ # via httpcore
22
+ # via httpx
23
+ distro==1.9.0
24
+ # via openai
25
+ editor==1.6.6
26
+ # via inquirer
27
+ gitdb==4.0.11
28
+ # via gitpython
29
+ gitpython==3.1.43
30
+ # via tgit
31
+ h11==0.14.0
32
+ # via httpcore
33
+ httpcore==1.0.6
34
+ # via httpx
35
+ httpx==0.27.2
36
+ # via openai
37
+ idna==3.10
38
+ # via anyio
39
+ # via httpx
40
+ inquirer==3.4.0
41
+ # via tgit
42
+ jiter==0.5.0
43
+ # via openai
44
+ markdown-it-py==3.0.0
45
+ # via rich
46
+ mdurl==0.1.2
47
+ # via markdown-it-py
48
+ openai==1.51.0
49
+ # via tgit
50
+ pydantic==2.9.2
51
+ # via openai
52
+ pydantic-core==2.23.4
53
+ # via pydantic
54
+ pygments==2.18.0
55
+ # via rich
56
+ pyyaml==6.0.2
57
+ # via tgit
58
+ readchar==4.2.0
59
+ # via inquirer
60
+ rich==13.9.1
61
+ # via tgit
62
+ runs==1.2.2
63
+ # via editor
64
+ six==1.16.0
65
+ # via blessed
66
+ smmap==5.0.1
67
+ # via gitdb
68
+ sniffio==1.3.1
69
+ # via anyio
70
+ # via httpx
71
+ # via openai
72
+ tqdm==4.66.5
73
+ # via openai
74
+ typing-extensions==4.12.2
75
+ # via openai
76
+ # via pydantic
77
+ # via pydantic-core
78
+ wcwidth==0.2.13
79
+ # via blessed
80
+ xmod==1.8.1
81
+ # via editor
82
+ # via runs
@@ -0,0 +1,2 @@
1
+ python -m build
2
+ twine upload dist/*