codegraph-cli-ai 0.1.0__tar.gz → 0.1.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.
@@ -0,0 +1 @@
1
+ include ./README.md
@@ -1,9 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codegraph-cli-ai
3
- Version: 0.1.0
3
+ Version: 0.1.4
4
4
  Summary: CLI tool to analyze codebases and visualize knowledge graphs using AST
5
5
  Author: Aditya Jogdand
6
6
  License: MIT
7
+ Project-URL: Homepage, https://github.com/AdityaJogdand/codegraph-ai
7
8
  Keywords: code-analysis,ast,graph,cli,developer-tools
8
9
  Classifier: Programming Language :: Python :: 3
9
10
  Classifier: Programming Language :: Python :: 3.9
@@ -1,9 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codegraph-cli-ai
3
- Version: 0.1.0
3
+ Version: 0.1.4
4
4
  Summary: CLI tool to analyze codebases and visualize knowledge graphs using AST
5
5
  Author: Aditya Jogdand
6
6
  License: MIT
7
+ Project-URL: Homepage, https://github.com/AdityaJogdand/codegraph-ai
7
8
  Keywords: code-analysis,ast,graph,cli,developer-tools
8
9
  Classifier: Programming Language :: Python :: 3
9
10
  Classifier: Programming Language :: Python :: 3.9
@@ -1,3 +1,4 @@
1
+ MANIFEST.in
1
2
  pyproject.toml
2
3
  codegraph/cli.py
3
4
  codegraph/graph/builder.py
@@ -0,0 +1,44 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "codegraph-cli-ai"
7
+ version = "0.1.4"
8
+ description = "CLI tool to analyze codebases and visualize knowledge graphs using AST"
9
+ readme = { file = "README.md", content-type = "text/markdown" }
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+
13
+ authors = [
14
+ { name = "Aditya Jogdand" }
15
+ ]
16
+
17
+ keywords = ["code-analysis", "ast", "graph", "cli", "developer-tools"]
18
+
19
+ classifiers = [
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.9",
22
+ "License :: OSI Approved :: MIT License",
23
+ "Operating System :: OS Independent",
24
+ ]
25
+
26
+ dependencies = [
27
+ "typer>=0.9.0",
28
+ "networkx>=3.0",
29
+ "pyvis>=0.3.2"
30
+ ]
31
+
32
+ [project.scripts]
33
+ codegraph = "codegraph.cli:app"
34
+
35
+ [project.urls]
36
+ Homepage = "https://github.com/AdityaJogdand/codegraph-ai"
37
+
38
+ # 🔥 IMPORTANT: ensures README and other files are included
39
+ [tool.setuptools]
40
+ include-package-data = true
41
+
42
+ # 🔥 Explicitly include package
43
+ [tool.setuptools.packages.find]
44
+ where = ["."]
@@ -1,29 +0,0 @@
1
- [project]
2
- name = "codegraph-cli-ai"
3
- version = "0.1.0"
4
- description = "CLI tool to analyze codebases and visualize knowledge graphs using AST"
5
- readme = "README.md"
6
- requires-python = ">=3.9"
7
- license = { text = "MIT" }
8
-
9
- authors = [
10
- { name = "Aditya Jogdand" }
11
- ]
12
-
13
- keywords = ["code-analysis", "ast", "graph", "cli", "developer-tools"]
14
-
15
- classifiers = [
16
- "Programming Language :: Python :: 3",
17
- "Programming Language :: Python :: 3.9",
18
- "License :: OSI Approved :: MIT License",
19
- "Operating System :: OS Independent",
20
- ]
21
-
22
- dependencies = [
23
- "typer>=0.9.0",
24
- "networkx>=3.0",
25
- "pyvis>=0.3.2"
26
- ]
27
-
28
- [project.scripts]
29
- codegraph = "codegraph.cli:app"