gdep 0.1.0__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.
- gdep-0.1.0/PKG-INFO +22 -0
- gdep-0.1.0/gdep/__init__.py +23 -0
- gdep-0.1.0/gdep/agent.py +666 -0
- gdep-0.1.0/gdep/analyzer/__init__.py +0 -0
- gdep-0.1.0/gdep/analyzer/impact_analyzer.py +144 -0
- gdep-0.1.0/gdep/analyzer/linter.py +331 -0
- gdep-0.1.0/gdep/cli.py +848 -0
- gdep-0.1.0/gdep/cpp_parser.py +182 -0
- gdep-0.1.0/gdep/cpp_runner.py +318 -0
- gdep-0.1.0/gdep/cpp_ts_parser.py +333 -0
- gdep-0.1.0/gdep/detector.py +400 -0
- gdep-0.1.0/gdep/init_context.py +234 -0
- gdep-0.1.0/gdep/llm_provider.py +297 -0
- gdep-0.1.0/gdep/profile.py +276 -0
- gdep-0.1.0/gdep/runner.py +620 -0
- gdep-0.1.0/gdep/source_reader.py +188 -0
- gdep-0.1.0/gdep/uasset_cache.py +129 -0
- gdep-0.1.0/gdep/ue5_ai_analyzer.py +536 -0
- gdep-0.1.0/gdep/ue5_animator.py +681 -0
- gdep-0.1.0/gdep/ue5_blueprint_mapping.py +743 -0
- gdep-0.1.0/gdep/ue5_blueprint_refs.py +288 -0
- gdep-0.1.0/gdep/ue5_flow.py +413 -0
- gdep-0.1.0/gdep/ue5_gas_analyzer.py +472 -0
- gdep-0.1.0/gdep/ue5_parser.py +621 -0
- gdep-0.1.0/gdep/ue5_runner.py +561 -0
- gdep-0.1.0/gdep/ue5_ts_parser.py +629 -0
- gdep-0.1.0/gdep/unity_animator.py +352 -0
- gdep-0.1.0/gdep/unity_event_refs.py +270 -0
- gdep-0.1.0/gdep/unity_refs.py +224 -0
- gdep-0.1.0/gdep.egg-info/PKG-INFO +22 -0
- gdep-0.1.0/gdep.egg-info/SOURCES.txt +35 -0
- gdep-0.1.0/gdep.egg-info/dependency_links.txt +1 -0
- gdep-0.1.0/gdep.egg-info/entry_points.txt +2 -0
- gdep-0.1.0/gdep.egg-info/requires.txt +6 -0
- gdep-0.1.0/gdep.egg-info/top_level.txt +1 -0
- gdep-0.1.0/pyproject.toml +39 -0
- gdep-0.1.0/setup.cfg +4 -0
gdep-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gdep
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Game Engine Dependency & AI Analysis Tool
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/pirua-game/gdep
|
|
7
|
+
Project-URL: Repository, https://github.com/pirua-game/gdep
|
|
8
|
+
Project-URL: Issues, https://github.com/pirua-game/gdep/issues
|
|
9
|
+
Keywords: game,unity,unreal,dependency,analysis,mcp,llm
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: click>=8.0
|
|
18
|
+
Requires-Dist: fastapi
|
|
19
|
+
Requires-Dist: uvicorn
|
|
20
|
+
Requires-Dist: tree-sitter
|
|
21
|
+
Requires-Dist: tree-sitter-cpp
|
|
22
|
+
Requires-Dist: mcp[cli]>=1.0
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
gdep — Unified CLI for Game/App Codebase Analysis
|
|
3
|
+
"""
|
|
4
|
+
from .detector import ProjectKind, ProjectProfile, detect
|
|
5
|
+
from .runner import (
|
|
6
|
+
RunResult,
|
|
7
|
+
describe,
|
|
8
|
+
diff,
|
|
9
|
+
find_gdep,
|
|
10
|
+
flow,
|
|
11
|
+
graph,
|
|
12
|
+
read_source,
|
|
13
|
+
run,
|
|
14
|
+
scan,
|
|
15
|
+
)
|
|
16
|
+
from .source_reader import find_class_files, format_for_llm
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
"detect", "ProjectProfile", "ProjectKind",
|
|
20
|
+
"run", "scan", "flow", "describe", "graph", "diff",
|
|
21
|
+
"read_source", "find_gdep", "RunResult",
|
|
22
|
+
"find_class_files", "format_for_llm",
|
|
23
|
+
]
|