tgit 0.4.3__tar.gz → 0.5.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.
- tgit-0.5.2/.gitignore +5 -0
- tgit-0.5.2/.python-version +1 -0
- tgit-0.5.2/.tgit.yml +5 -0
- tgit-0.5.2/.vscode/settings.json +17 -0
- {tgit-0.4.3 → tgit-0.5.2}/PKG-INFO +11 -14
- {tgit-0.4.3 → tgit-0.5.2}/README.md +17 -17
- {tgit-0.4.3 → tgit-0.5.2}/pyproject.toml +43 -34
- tgit-0.5.2/requirements-dev.lock +82 -0
- tgit-0.5.2/requirements.lock +82 -0
- tgit-0.5.2/scripts/publish.sh +2 -0
- {tgit-0.4.3 → tgit-0.5.2}/tgit/changelog.py +247 -247
- {tgit-0.4.3 → tgit-0.5.2}/tgit/cli.py +43 -43
- tgit-0.5.2/tgit/commit.py +106 -0
- {tgit-0.4.3 → tgit-0.5.2}/tgit/settings.py +32 -32
- {tgit-0.4.3 → tgit-0.5.2}/tgit/utils.py +83 -83
- {tgit-0.4.3 → tgit-0.5.2}/tgit/version.py +416 -416
- tgit-0.4.3/tgit/commit.py +0 -59
- {tgit-0.4.3 → tgit-0.5.2}/tgit/__init__.py +0 -0
tgit-0.5.2/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.12.5
|
tgit-0.5.2/.tgit.yml
ADDED
|
@@ -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
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: tgit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.2
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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-
|
|
20
|
-
Requires-Dist: gitpython
|
|
21
|
-
Requires-Dist: inquirer
|
|
22
|
-
Requires-Dist:
|
|
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
|
-
[](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
|
+
[](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
|
-
[
|
|
2
|
-
name = "tgit"
|
|
3
|
-
version = "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 = ["Jannchie
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
[
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
1
|
+
[project]
|
|
2
|
+
name = "tgit"
|
|
3
|
+
version = "0.5.2"
|
|
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
|