gitgalaxy 1.0.7__tar.gz → 1.0.9__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.
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/PKG-INFO +2 -2
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/language_lens.py +1 -1
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/PKG-INFO +2 -2
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/pyproject.toml +2 -2
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/LICENSE +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/README.md +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/__init__.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/aperture.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/audit_recorder.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/chronometer.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/detector.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/galaxyscope.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/gitgalaxy_standards_v011.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/gpu_recorder.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/guidestar_lens.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/llm_recorder.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/prism.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/record_keeper.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/security_lens.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/signal_processor.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/spectral_auditor.py +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/SOURCES.txt +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/dependency_links.txt +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/entry_points.txt +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/top_level.txt +0 -0
- {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitgalaxy
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.9
|
|
4
|
+
Summary: A high-speed static analysis engine that sequences source code like DNA to map architectural risk and security threats.
|
|
5
5
|
Author: Joe Esquibel
|
|
6
6
|
License: PolyForm Noncommercial License 1.0.0
|
|
7
7
|
Project-URL: Homepage, https://gitgalaxy.io
|
|
@@ -362,7 +362,7 @@ class LanguageDetector:
|
|
|
362
362
|
elif lock_tier == 4:
|
|
363
363
|
if spec_intensity >= self.thresholds.get("FLOOR_TIER_4", 0.92):
|
|
364
364
|
best_lang, best_conf = spectral_id, spec_intensity
|
|
365
|
-
source_proof = f"Spectral Discovery (Passed {self.thresholds.get(
|
|
365
|
+
source_proof = f"Spectral Discovery (Passed {self.thresholds.get('FLOOR_TIER_4', 0.92)} Floor)"
|
|
366
366
|
else:
|
|
367
367
|
best_lang, best_conf = "undeterminable", spec_intensity
|
|
368
368
|
source_proof = f"Failed Discovery Floor ({spec_intensity:.2f})"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitgalaxy
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.9
|
|
4
|
+
Summary: A high-speed static analysis engine that sequences source code like DNA to map architectural risk and security threats.
|
|
5
5
|
Author: Joe Esquibel
|
|
6
6
|
License: PolyForm Noncommercial License 1.0.0
|
|
7
7
|
Project-URL: Homepage, https://gitgalaxy.io
|
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "gitgalaxy"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.9"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Joe Esquibel" },
|
|
10
10
|
]
|
|
11
|
-
description = "
|
|
11
|
+
description = "A high-speed static analysis engine that sequences source code like DNA to map architectural risk and security threats."
|
|
12
12
|
readme = "README.md"
|
|
13
13
|
requires-python = ">=3.8"
|
|
14
14
|
# Updated to standard license text format to clear the warning
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|