ikomet 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl

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
1
  Metadata-Version: 2.4
2
2
  Name: ikomet
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: AI-powered Conventional Commit message generator using your staged changes
5
5
  Author: ajabri
6
6
  Author-email: abdelalijabri76@gmail.com
@@ -24,6 +24,7 @@ Description-Content-Type: text/markdown
24
24
 
25
25
  Komet is a smart CLI tool that leverages Groq's LLM API to automatically generate professional, [Conventional Commits](https://www.conventionalcommits.org/) formatted commit messages from your staged git changes. Say goodbye to bland commit messages and hello to consistent, meaningful version control history.
26
26
 
27
+ [![PyPI](https://img.shields.io/pypi/v/ikomet)](https://pypi.org/project/ikomet/)
27
28
  [![Python](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
28
29
  [![Poetry](https://img.shields.io/badge/poetry-dependency%20management-blueviolet)](https://python-poetry.org/)
29
30
  [![Groq](https://img.shields.io/badge/powered%20by-Groq%20LLM-orange)](https://groq.com/)
@@ -65,39 +66,45 @@ Use it like this:
65
66
  ### Prerequisites
66
67
 
67
68
  - Python 3.10 or higher
68
- - Poetry (Python dependency management)
69
69
  - Git repository
70
70
  - Groq API key ([Get it here](https://console.groq.com/keys))
71
71
 
72
- ### Install via Poetry
72
+ ### Quick Install from PyPI (Recommended)
73
+
74
+ Install globally using **pipx** (recommended for CLI tools):
73
75
 
74
76
  ```bash
75
- # Clone the repository
76
- git clone https://github.com/ajabrii/Komet.git
77
- cd Komet
77
+ # Install pipx if you don't have it
78
+ python3 -m pip install --user pipx
79
+ python3 -m pipx ensurepath
78
80
 
79
- # Install dependencies
80
- poetry install
81
+ # Install ikomet
82
+ pipx install ikomet
81
83
 
82
- # Set your Groq API key
83
- export GROQ_API_KEY=gq_xxxxxxxxxxxxxxxx
84
+ # Now use it anywhere!
85
+ komet
86
+ ```
84
87
 
85
- # Run Komet
86
- poetry run komet
88
+ Or install with **pip**:
89
+
90
+ ```bash
91
+ pip install ikomet
87
92
  ```
88
93
 
89
- ### Install as Global Command
94
+ ### Install from Source
95
+
96
+ For development or contributing:
90
97
 
91
98
  ```bash
92
- # Install with pipx (recommended)
93
- pipx install .
99
+ # Clone the repository
100
+ git clone https://github.com/ajabrii/Komet.git
101
+ cd Komet
94
102
 
95
- # Or install globally with poetry
96
- poetry build
97
- pip install dist/komet-0.1.0-py3-none-any.whl
103
+ # Install with poetry
104
+ poetry install
98
105
 
99
- # Now use it anywhere
100
- komet
106
+ # Run Komet
107
+ poetry run komet
101
108
  ```
102
109
 
103
110
  ---
@@ -117,15 +124,23 @@ komet
117
124
  ```
118
125
 
119
126
  3. **Copy and commit** with the suggested message:
120
- ```bash
121
- git commit -m '<generated-message>'
122
- ```
127
+ ```bashGet yours for free at [console.groq.com/keys](https://console.groq.com/keys).
123
128
 
124
- ### Environment Setup
125
-
126
- Komet requires a Groq API key. Set it up once:
129
+ Set it up once:
127
130
 
128
131
  ```bash
132
+ # Linux/macOS - Temporary (current session only)
133
+ export GROQ_API_KEY=gq_xxxxxxxxxxxxxxxx
134
+
135
+ # Linux/macOS - Permanent (add to ~/.bashrc, ~/.zshrc, or ~/.profile)
136
+ echo 'export GROQ_API_KEY=gq_xxxxxxxxxxxxxxxx' >> ~/.bashrc
137
+ source ~/.bashrc
138
+
139
+ # Windows (PowerShell)
140
+ $env:GROQ_API_KEY="gq_xxxxxxxxxxxxxxxx"
141
+
142
+ # Windows - Permanent (System Environment Variables)
143
+ setx GROQ_API_KEY "gq_xxxxxxxxxxxxxxxx"
129
144
  # Temporary (current session only)
130
145
  export GROQ_API_KEY=gq_xxxxxxxxxxxxxxxx
131
146
 
@@ -0,0 +1,6 @@
1
+ komet/__init__.py,sha256=Pru0BlFBASFCFo7McHdohtKkUtgMPDwbGfyUZlE2_Vw,21
2
+ komet/main.py,sha256=CA4iS5ZIaBCMu42Mo4TWR55Cjp2JcOvaZoAdf_2tUzE,5923
3
+ ikomet-0.1.2.dist-info/METADATA,sha256=ulDpAwjYPTlGhbQvu7tawiz_gLJ8RF5ys60qMbwmBtA,7388
4
+ ikomet-0.1.2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
5
+ ikomet-0.1.2.dist-info/entry_points.txt,sha256=h8cBnY8SHCkwOSCZifwKl8HgOsXNAvAEOomrKevEEHA,40
6
+ ikomet-0.1.2.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- komet/__init__.py,sha256=Pru0BlFBASFCFo7McHdohtKkUtgMPDwbGfyUZlE2_Vw,21
2
- komet/main.py,sha256=CA4iS5ZIaBCMu42Mo4TWR55Cjp2JcOvaZoAdf_2tUzE,5923
3
- ikomet-0.1.1.dist-info/METADATA,sha256=F2s3btUy-dNaFKTgcLN3oZOqTvzitf7FZTm-8HWTj_k,6879
4
- ikomet-0.1.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
5
- ikomet-0.1.1.dist-info/entry_points.txt,sha256=h8cBnY8SHCkwOSCZifwKl8HgOsXNAvAEOomrKevEEHA,40
6
- ikomet-0.1.1.dist-info/RECORD,,
File without changes