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.
Files changed (26) hide show
  1. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/PKG-INFO +2 -2
  2. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/language_lens.py +1 -1
  3. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/PKG-INFO +2 -2
  4. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/pyproject.toml +2 -2
  5. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/LICENSE +0 -0
  6. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/README.md +0 -0
  7. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/__init__.py +0 -0
  8. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/aperture.py +0 -0
  9. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/audit_recorder.py +0 -0
  10. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/chronometer.py +0 -0
  11. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/detector.py +0 -0
  12. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/galaxyscope.py +0 -0
  13. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/gitgalaxy_standards_v011.py +0 -0
  14. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/gpu_recorder.py +0 -0
  15. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/guidestar_lens.py +0 -0
  16. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/llm_recorder.py +0 -0
  17. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/prism.py +0 -0
  18. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/record_keeper.py +0 -0
  19. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/security_lens.py +0 -0
  20. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/signal_processor.py +0 -0
  21. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy/spectral_auditor.py +0 -0
  22. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/SOURCES.txt +0 -0
  23. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/dependency_links.txt +0 -0
  24. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/entry_points.txt +0 -0
  25. {gitgalaxy-1.0.7 → gitgalaxy-1.0.9}/gitgalaxy.egg-info/top_level.txt +0 -0
  26. {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.7
4
- Summary: Visualizes codebase complexity as explorable 3D galaxies.
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("FLOOR_TIER_4", 0.92)} Floor)"
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.7
4
- Summary: Visualizes codebase complexity as explorable 3D galaxies.
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"
7
+ version = "1.0.9"
8
8
  authors = [
9
9
  { name="Joe Esquibel" },
10
10
  ]
11
- description = "Visualizes codebase complexity as explorable 3D galaxies."
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