sourcecode 1.31.7__py3-none-any.whl → 1.31.9__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.
- sourcecode/__init__.py +1 -1
- sourcecode/architecture_analyzer.py +1 -1
- sourcecode/cli.py +2868 -3204
- sourcecode/detectors/java.py +86 -2
- sourcecode/entrypoint_classifier.py +8 -1
- sourcecode/file_classifier.py +21 -2
- sourcecode/mcp/server.py +67 -8
- sourcecode/prepare_context.py +35 -0
- sourcecode/repository_ir.py +325 -28
- sourcecode/runtime_classifier.py +79 -1
- sourcecode/serializer.py +58 -0
- {sourcecode-1.31.7.dist-info → sourcecode-1.31.9.dist-info}/METADATA +3 -3
- {sourcecode-1.31.7.dist-info → sourcecode-1.31.9.dist-info}/RECORD +16 -16
- {sourcecode-1.31.7.dist-info → sourcecode-1.31.9.dist-info}/WHEEL +0 -0
- {sourcecode-1.31.7.dist-info → sourcecode-1.31.9.dist-info}/entry_points.txt +0 -0
- {sourcecode-1.31.7.dist-info → sourcecode-1.31.9.dist-info}/licenses/LICENSE +0 -0
sourcecode/__init__.py
CHANGED
|
@@ -330,7 +330,7 @@ class ArchitectureAnalyzer:
|
|
|
330
330
|
tentative = True
|
|
331
331
|
if not _hard_evidence:
|
|
332
332
|
limitations.append(
|
|
333
|
-
"Pattern
|
|
333
|
+
"Pattern inferred from directory structure; import graph not available — structural dependency direction unverified"
|
|
334
334
|
)
|
|
335
335
|
if not _hard_evidence:
|
|
336
336
|
matched_dirs = sorted({
|