gitputra 0.2.2__tar.gz → 0.2.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitputra
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: AI-powered GitHub repo analyzer CLI — analyze, chat, and visualize any codebase. Run 'gitputra info' to see all commands and features.
5
5
  Author-email: Adityava Gangopadhyay <adityava49cse@gmail.com>
6
6
  License: MIT
@@ -15,9 +15,9 @@ Requires-Dist: chromadb>=1.0
15
15
  Requires-Dist: matplotlib<4.0,>=3.8
16
16
  Requires-Dist: networkx<4.0,>=3.2
17
17
  Requires-Dist: reportlab<5.0,>=4.0
18
- Requires-Dist: google-generativeai<1.0,>=0.5
18
+ Requires-Dist: google-generativeai>=0.5
19
19
  Requires-Dist: openai<2.0,>=1.0
20
- Requires-Dist: anthropic<1.0,>=0.25
20
+ Requires-Dist: anthropic>=0.25
21
21
  Requires-Dist: pdfplumber<1.0,>=0.9
22
22
 
23
23
  # 🔍 GitPutra
@@ -222,7 +222,7 @@ gitputra analyze https://github.com/user/repo --ai gemini --key KEY --lang Benga
222
222
 
223
223
  ---
224
224
 
225
- ## 📁 Supported File Extensions (48 types)
225
+ ## 📁 Supported File Extensions (49 types)
226
226
 
227
227
  | Category | Extensions |
228
228
  |----------|-----------|
@@ -233,7 +233,7 @@ gitputra analyze https://github.com/user/repo --ai gemini --key KEY --lang Benga
233
233
  | Systems | `.go`, `.rs`, `.swift`, `.dart` |
234
234
  | Scripting | `.sh`, `.bat`, `.ps1`, `.pl`, `.lua`, `.r`, `.m`, `.rb`, `.php`, `.coffee`, `.elm` |
235
235
  | Config | `.json`, `.yaml`, `.yml`, `.xml`, `.ini`, `.cfg`, `.conf`, `.gradle`, `.makefile` |
236
- | Docs | `.md`, `.txt`, `.log`, `.sql` |
236
+ | Docs | `.md`, `.txt`, `.log`, `.sql`, `.pdf` |
237
237
  | Special | `Dockerfile`, `Makefile` |
238
238
 
239
239
  ---
@@ -200,7 +200,7 @@ gitputra analyze https://github.com/user/repo --ai gemini --key KEY --lang Benga
200
200
 
201
201
  ---
202
202
 
203
- ## 📁 Supported File Extensions (48 types)
203
+ ## 📁 Supported File Extensions (49 types)
204
204
 
205
205
  | Category | Extensions |
206
206
  |----------|-----------|
@@ -211,7 +211,7 @@ gitputra analyze https://github.com/user/repo --ai gemini --key KEY --lang Benga
211
211
  | Systems | `.go`, `.rs`, `.swift`, `.dart` |
212
212
  | Scripting | `.sh`, `.bat`, `.ps1`, `.pl`, `.lua`, `.r`, `.m`, `.rb`, `.php`, `.coffee`, `.elm` |
213
213
  | Config | `.json`, `.yaml`, `.yml`, `.xml`, `.ini`, `.cfg`, `.conf`, `.gradle`, `.makefile` |
214
- | Docs | `.md`, `.txt`, `.log`, `.sql` |
214
+ | Docs | `.md`, `.txt`, `.log`, `.sql`, `.pdf` |
215
215
  | Special | `Dockerfile`, `Makefile` |
216
216
 
217
217
  ---
@@ -7,7 +7,7 @@ load_dotenv()
7
7
 
8
8
 
9
9
  @click.group()
10
- @click.version_option("0.2.2", prog_name="gitputra")
10
+ @click.version_option("0.2.3", prog_name="gitputra")
11
11
  def main():
12
12
  """🔍 Gitputra — AI-powered GitHub repo analyzer."""
13
13
  pass
@@ -261,7 +261,7 @@ def info():
261
261
  """Show supported AIs, languages, extensions, and commands."""
262
262
  click.secho("\n 🔍 GitPutra — AI-powered GitHub Repo Analyzer", fg="cyan", bold=True)
263
263
  click.secho(" 🤖 Chat with your codebase using Gemini, OpenAI or Claude", fg="bright_cyan")
264
- click.secho(" 🏷️ Version: 0.2.2", fg="cyan")
264
+ click.secho(" 🏷️ Version: 0.2.3", fg="cyan")
265
265
  click.secho(" 👨‍💻 Author: Adityava Gangopadhyay", fg="magenta")
266
266
  click.secho(" 💼 Email: adityava49cse@gmail.com", fg="bright_magenta")
267
267
  click.secho(" 🔗 LinkedIn: https://www.linkedin.com/in/adityava-gangopadhyay/", fg="blue")
@@ -18,8 +18,8 @@ import datetime
18
18
 
19
19
  # ── Re-use the same extension filter as corelogic.py ──────────────────────────
20
20
  SUPPORTED_EXT = (
21
- ".py", ".c", ".h", ".cpp", ".js", ".ts", ".md", ".txt",
22
- ".java", ".go", ".rs", ".php", ".rb", ".swift",
21
+ ".py", ".c", ".h", ".cpp", ".js", ".ts", ".md", ".pdf",
22
+ ".txt", ".java", ".go", ".rs", ".php", ".rb", ".swift",
23
23
  ".cs", ".html", ".css", ".json", ".yaml", ".yml", ".xml",
24
24
  ".sh", ".bat", ".ps1", ".gradle", ".makefile",
25
25
  ".ini", ".cfg", ".conf", ".log", ".sql", ".ipynb",
@@ -139,7 +139,7 @@ _TECH_HINTS = {
139
139
  ".rs": "Rust",
140
140
  ".java": "Java",
141
141
  ".cpp": "C++",
142
- ".c": "C",
142
+ ".c": "C",
143
143
  ".cs": "C#",
144
144
  ".rb": "Ruby",
145
145
  ".php": "PHP",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitputra
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: AI-powered GitHub repo analyzer CLI — analyze, chat, and visualize any codebase. Run 'gitputra info' to see all commands and features.
5
5
  Author-email: Adityava Gangopadhyay <adityava49cse@gmail.com>
6
6
  License: MIT
@@ -15,9 +15,9 @@ Requires-Dist: chromadb>=1.0
15
15
  Requires-Dist: matplotlib<4.0,>=3.8
16
16
  Requires-Dist: networkx<4.0,>=3.2
17
17
  Requires-Dist: reportlab<5.0,>=4.0
18
- Requires-Dist: google-generativeai<1.0,>=0.5
18
+ Requires-Dist: google-generativeai>=0.5
19
19
  Requires-Dist: openai<2.0,>=1.0
20
- Requires-Dist: anthropic<1.0,>=0.25
20
+ Requires-Dist: anthropic>=0.25
21
21
  Requires-Dist: pdfplumber<1.0,>=0.9
22
22
 
23
23
  # 🔍 GitPutra
@@ -222,7 +222,7 @@ gitputra analyze https://github.com/user/repo --ai gemini --key KEY --lang Benga
222
222
 
223
223
  ---
224
224
 
225
- ## 📁 Supported File Extensions (48 types)
225
+ ## 📁 Supported File Extensions (49 types)
226
226
 
227
227
  | Category | Extensions |
228
228
  |----------|-----------|
@@ -233,7 +233,7 @@ gitputra analyze https://github.com/user/repo --ai gemini --key KEY --lang Benga
233
233
  | Systems | `.go`, `.rs`, `.swift`, `.dart` |
234
234
  | Scripting | `.sh`, `.bat`, `.ps1`, `.pl`, `.lua`, `.r`, `.m`, `.rb`, `.php`, `.coffee`, `.elm` |
235
235
  | Config | `.json`, `.yaml`, `.yml`, `.xml`, `.ini`, `.cfg`, `.conf`, `.gradle`, `.makefile` |
236
- | Docs | `.md`, `.txt`, `.log`, `.sql` |
236
+ | Docs | `.md`, `.txt`, `.log`, `.sql`, `.pdf` |
237
237
  | Special | `Dockerfile`, `Makefile` |
238
238
 
239
239
  ---
@@ -5,7 +5,7 @@ chromadb>=1.0
5
5
  matplotlib<4.0,>=3.8
6
6
  networkx<4.0,>=3.2
7
7
  reportlab<5.0,>=4.0
8
- google-generativeai<1.0,>=0.5
8
+ google-generativeai>=0.5
9
9
  openai<2.0,>=1.0
10
- anthropic<1.0,>=0.25
10
+ anthropic>=0.25
11
11
  pdfplumber<1.0,>=0.9
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "gitputra"
7
- version = "0.2.2"
7
+ version = "0.2.3"
8
8
  description = "AI-powered GitHub repo analyzer CLI — analyze, chat, and visualize any codebase. Run 'gitputra info' to see all commands and features."
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -21,9 +21,9 @@ dependencies = [
21
21
  "matplotlib>=3.8,<4.0",
22
22
  "networkx>=3.2,<4.0",
23
23
  "reportlab>=4.0,<5.0",
24
- "google-generativeai>=0.5,<1.0",
24
+ "google-generativeai>=0.5",
25
25
  "openai>=1.0,<2.0",
26
- "anthropic>=0.25,<1.0",
26
+ "anthropic>=0.25",
27
27
  "pdfplumber>=0.9,<1.0"
28
28
  ]
29
29
 
File without changes
File without changes