gitauto-cli 1.1.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.
@@ -0,0 +1,21 @@
1
+ GitAuto – Non-Commercial License (2025)
2
+
3
+ Copyright (c) 2025 Wizdomic
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 use,
7
+ copy, modify, and distribute the Software **for personal, educational, or
8
+ non-commercial purposes only**.
9
+
10
+ Commercial use, sale, or distribution for profit is **strictly prohibited**.
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
20
+ FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21
+ IN THE SOFTWARE..
@@ -0,0 +1,95 @@
1
+ Metadata-Version: 2.4
2
+ Name: gitauto-cli
3
+ Version: 1.1.0
4
+ Summary: AI-powered git workflow automation
5
+ License: MIT
6
+ Keywords: git,automation,ai,cli,devtools
7
+ Classifier: Development Status :: 4 - Beta
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Software Development :: Version Control :: Git
13
+ Requires-Python: >=3.8
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE.md
16
+ Provides-Extra: dev
17
+ Requires-Dist: pytest>=7; extra == "dev"
18
+ Dynamic: license-file
19
+
20
+ # GitAuto
21
+
22
+ ![Version](https://img.shields.io/badge/version-1.1.0-blue)
23
+ ![Python](https://img.shields.io/badge/Python-3.8%2B-blue)
24
+ ![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
25
+
26
+ AI-powered Git workflow automation. Stage, commit, and push in one command.
27
+
28
+ ---
29
+
30
+ ## Install
31
+
32
+ ```bash
33
+ pipx install gitauto-cli
34
+ ```
35
+
36
+ > Need pipx? `pip install pipx && pipx ensurepath && exec $SHELL`
37
+
38
+ ---
39
+
40
+ ## Setup
41
+
42
+ ```bash
43
+ gitauto setup
44
+ ```
45
+
46
+ Choose a provider (OpenAI / Anthropic / Gemini) and paste your API key. Skippable — works without AI too.
47
+
48
+ ---
49
+
50
+ ## Usage
51
+
52
+ ```bash
53
+ gitauto
54
+ ```
55
+
56
+ ```
57
+ Changes:
58
+ M src/app.py
59
+
60
+ Files to add (. for all) [.]: .
61
+ ✓ Staged: .
62
+
63
+ Generate commit message with AI? (y/n) [y]: y
64
+ ℹ Generating via anthropic...
65
+
66
+ Add input validation to user registration
67
+
68
+ Use this? (y / r=regenerate / m=manual) [y]: y
69
+ ✓ Committed: Add input validation to user registration
70
+
71
+ Push to remote? (y/n) [y]: y
72
+ ✓ Pushed to origin/main
73
+ ```
74
+
75
+ ---
76
+
77
+ ## Commands
78
+
79
+ | Command | Description |
80
+ |---------|-------------|
81
+ | `gitauto` | Full workflow — add → commit → push |
82
+ | `gitauto setup` | Configure AI provider and API key |
83
+ | `gitauto upgrade` | Upgrade to latest version |
84
+ | `gitauto uninstall` | Remove GitAuto from your system |
85
+ | `gitauto --no-push` | Commit only, skip push |
86
+ | `gitauto --no-ai` | Skip AI, type message manually |
87
+ | `gitauto --force-push` | Force push ⚠️ destructive |
88
+ | `gitauto --branch <n>` | Switch or create branch before committing |
89
+ | `gitauto --help` | Show all commands |
90
+
91
+ ---
92
+
93
+ ## License
94
+
95
+ MIT
@@ -0,0 +1,76 @@
1
+ # GitAuto
2
+
3
+ ![Version](https://img.shields.io/badge/version-1.1.0-blue)
4
+ ![Python](https://img.shields.io/badge/Python-3.8%2B-blue)
5
+ ![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
6
+
7
+ AI-powered Git workflow automation. Stage, commit, and push in one command.
8
+
9
+ ---
10
+
11
+ ## Install
12
+
13
+ ```bash
14
+ pipx install gitauto-cli
15
+ ```
16
+
17
+ > Need pipx? `pip install pipx && pipx ensurepath && exec $SHELL`
18
+
19
+ ---
20
+
21
+ ## Setup
22
+
23
+ ```bash
24
+ gitauto setup
25
+ ```
26
+
27
+ Choose a provider (OpenAI / Anthropic / Gemini) and paste your API key. Skippable — works without AI too.
28
+
29
+ ---
30
+
31
+ ## Usage
32
+
33
+ ```bash
34
+ gitauto
35
+ ```
36
+
37
+ ```
38
+ Changes:
39
+ M src/app.py
40
+
41
+ Files to add (. for all) [.]: .
42
+ ✓ Staged: .
43
+
44
+ Generate commit message with AI? (y/n) [y]: y
45
+ ℹ Generating via anthropic...
46
+
47
+ Add input validation to user registration
48
+
49
+ Use this? (y / r=regenerate / m=manual) [y]: y
50
+ ✓ Committed: Add input validation to user registration
51
+
52
+ Push to remote? (y/n) [y]: y
53
+ ✓ Pushed to origin/main
54
+ ```
55
+
56
+ ---
57
+
58
+ ## Commands
59
+
60
+ | Command | Description |
61
+ |---------|-------------|
62
+ | `gitauto` | Full workflow — add → commit → push |
63
+ | `gitauto setup` | Configure AI provider and API key |
64
+ | `gitauto upgrade` | Upgrade to latest version |
65
+ | `gitauto uninstall` | Remove GitAuto from your system |
66
+ | `gitauto --no-push` | Commit only, skip push |
67
+ | `gitauto --no-ai` | Skip AI, type message manually |
68
+ | `gitauto --force-push` | Force push ⚠️ destructive |
69
+ | `gitauto --branch <n>` | Switch or create branch before committing |
70
+ | `gitauto --help` | Show all commands |
71
+
72
+ ---
73
+
74
+ ## License
75
+
76
+ MIT
@@ -0,0 +1,37 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "gitauto-cli"
7
+ version = "1.1.0"
8
+ description = "AI-powered git workflow automation"
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.8"
12
+ dependencies = []
13
+
14
+ keywords = ["git", "automation", "ai", "cli", "devtools"]
15
+
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Environment :: Console",
19
+ "Intended Audience :: Developers",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3",
22
+ "Topic :: Software Development :: Version Control :: Git",
23
+ ]
24
+
25
+ [project.scripts]
26
+ gitauto = "gitauto:main"
27
+
28
+ # gitauto.py is a single module file, not a package directory
29
+ # so we use py_modules instead of packages.find
30
+ [tool.setuptools]
31
+ py-modules = ["gitauto"]
32
+
33
+ [tool.setuptools.package-dir]
34
+ "" = "src"
35
+
36
+ [project.optional-dependencies]
37
+ dev = ["pytest>=7"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+