codegraph-cli-ai 0.1.1__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.
- codegraph_cli_ai-0.1.4/MANIFEST.in +1 -0
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/PKG-INFO +2 -1
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph_cli_ai.egg-info/PKG-INFO +2 -1
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph_cli_ai.egg-info/SOURCES.txt +1 -0
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph_cli_ai.egg-info/top_level.txt +1 -0
- codegraph_cli_ai-0.1.4/pyproject.toml +44 -0
- codegraph_cli_ai-0.1.1/pyproject.toml +0 -29
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph/cli.py +0 -0
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph/graph/builder.py +0 -0
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph/parsers/python_parser.py +0 -0
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph_cli_ai.egg-info/dependency_links.txt +0 -0
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph_cli_ai.egg-info/entry_points.txt +0 -0
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph_cli_ai.egg-info/requires.txt +0 -0
- {codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/setup.cfg +0 -0
|
@@ -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.
|
|
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.
|
|
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
|
|
@@ -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.1"
|
|
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"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph_cli_ai.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{codegraph_cli_ai-0.1.1 → codegraph_cli_ai-0.1.4}/codegraph_cli_ai.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|