commitmessagegenerator 1.2.3__tar.gz → 1.2.4__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.
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/PKG-INFO +1 -1
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator/cli.py +2 -1
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator/configure.py +1 -1
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator.egg-info/PKG-INFO +1 -1
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/pyproject.toml +1 -1
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/LICENSE +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/README.md +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator/__init__.py +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator/generator.py +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator.egg-info/SOURCES.txt +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator.egg-info/dependency_links.txt +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator.egg-info/entry_points.txt +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator.egg-info/requires.txt +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator.egg-info/top_level.txt +0 -0
- {commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/setup.cfg +0 -0
|
@@ -2,6 +2,7 @@ import argparse
|
|
|
2
2
|
import subprocess
|
|
3
3
|
from .generator import gerar_mensagem_commit
|
|
4
4
|
from .configure import api_key
|
|
5
|
+
import sys
|
|
5
6
|
|
|
6
7
|
def main():
|
|
7
8
|
parser = argparse.ArgumentParser(description="Gerador de mensagens de commit com IA")
|
|
@@ -33,6 +34,6 @@ def main():
|
|
|
33
34
|
api_key(key)
|
|
34
35
|
print("\nAPI KEY saved in .env file\n")
|
|
35
36
|
|
|
36
|
-
if
|
|
37
|
+
if len(sys.argv) == 1:
|
|
37
38
|
print("\nRemoving staged changes (git reset)...")
|
|
38
39
|
subprocess.run(["git", "reset"])
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "commitmessagegenerator"
|
|
7
|
-
version = "1.2.
|
|
7
|
+
version = "1.2.4"
|
|
8
8
|
description = "Generate commit messages with AI (Google Gemini) automatically using `git diff`."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
File without changes
|
|
File without changes
|
{commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator/__init__.py
RENAMED
|
File without changes
|
{commitmessagegenerator-1.2.3 → commitmessagegenerator-1.2.4}/commitmessagegenerator/generator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|