hypergumbo-core 2.0.0__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.
Files changed (137) hide show
  1. hypergumbo_core/__init__.py +23 -0
  2. hypergumbo_core/__main__.py +4 -0
  3. hypergumbo_core/_embedding_data.py +39 -0
  4. hypergumbo_core/analyze/__init__.py +1 -0
  5. hypergumbo_core/analyze/all_analyzers.py +230 -0
  6. hypergumbo_core/analyze/base.py +279 -0
  7. hypergumbo_core/analyze/registry.py +182 -0
  8. hypergumbo_core/build_grammars.py +312 -0
  9. hypergumbo_core/catalog.py +619 -0
  10. hypergumbo_core/cli.py +3336 -0
  11. hypergumbo_core/compact.py +1235 -0
  12. hypergumbo_core/datamodels.py +381 -0
  13. hypergumbo_core/discovery.py +130 -0
  14. hypergumbo_core/entrypoints.py +571 -0
  15. hypergumbo_core/framework_patterns.py +1221 -0
  16. hypergumbo_core/frameworks/adonisjs.yaml +114 -0
  17. hypergumbo_core/frameworks/aiohttp.yaml +72 -0
  18. hypergumbo_core/frameworks/akka-http.yaml +97 -0
  19. hypergumbo_core/frameworks/android.yaml +43 -0
  20. hypergumbo_core/frameworks/aspnet.yaml +99 -0
  21. hypergumbo_core/frameworks/bottle.yaml +46 -0
  22. hypergumbo_core/frameworks/cakephp.yaml +112 -0
  23. hypergumbo_core/frameworks/celery.yaml +73 -0
  24. hypergumbo_core/frameworks/cli-go.yaml +70 -0
  25. hypergumbo_core/frameworks/cli-js.yaml +89 -0
  26. hypergumbo_core/frameworks/cli-ruby.yaml +86 -0
  27. hypergumbo_core/frameworks/cli-rust.yaml +53 -0
  28. hypergumbo_core/frameworks/cli.yaml +92 -0
  29. hypergumbo_core/frameworks/codeigniter.yaml +182 -0
  30. hypergumbo_core/frameworks/config-conventions.yaml +144 -0
  31. hypergumbo_core/frameworks/django.yaml +126 -0
  32. hypergumbo_core/frameworks/electron.yaml +92 -0
  33. hypergumbo_core/frameworks/express.yaml +129 -0
  34. hypergumbo_core/frameworks/falcon.yaml +66 -0
  35. hypergumbo_core/frameworks/fastapi.yaml +67 -0
  36. hypergumbo_core/frameworks/fastify.yaml +76 -0
  37. hypergumbo_core/frameworks/feathers.yaml +133 -0
  38. hypergumbo_core/frameworks/flask-appbuilder.yaml +73 -0
  39. hypergumbo_core/frameworks/flask.yaml +88 -0
  40. hypergumbo_core/frameworks/fuelphp.yaml +121 -0
  41. hypergumbo_core/frameworks/go-web.yaml +102 -0
  42. hypergumbo_core/frameworks/grape.yaml +77 -0
  43. hypergumbo_core/frameworks/graphql-python.yaml +105 -0
  44. hypergumbo_core/frameworks/graphql-ruby.yaml +83 -0
  45. hypergumbo_core/frameworks/graphql.yaml +104 -0
  46. hypergumbo_core/frameworks/hanami.yaml +122 -0
  47. hypergumbo_core/frameworks/hapi.yaml +86 -0
  48. hypergumbo_core/frameworks/http4k.yaml +127 -0
  49. hypergumbo_core/frameworks/http4s.yaml +150 -0
  50. hypergumbo_core/frameworks/javalin.yaml +178 -0
  51. hypergumbo_core/frameworks/jax-rs.yaml +41 -0
  52. hypergumbo_core/frameworks/koa.yaml +89 -0
  53. hypergumbo_core/frameworks/ktor.yaml +65 -0
  54. hypergumbo_core/frameworks/laminas.yaml +125 -0
  55. hypergumbo_core/frameworks/language-conventions.yaml +98 -0
  56. hypergumbo_core/frameworks/laravel.yaml +179 -0
  57. hypergumbo_core/frameworks/library-exports.yaml +48 -0
  58. hypergumbo_core/frameworks/litestar.yaml +60 -0
  59. hypergumbo_core/frameworks/lumen.yaml +180 -0
  60. hypergumbo_core/frameworks/main-functions.yaml +87 -0
  61. hypergumbo_core/frameworks/masonite.yaml +90 -0
  62. hypergumbo_core/frameworks/micronaut.yaml +108 -0
  63. hypergumbo_core/frameworks/naming-conventions.yaml +39 -0
  64. hypergumbo_core/frameworks/nestjs.yaml +60 -0
  65. hypergumbo_core/frameworks/nex.yaml +85 -0
  66. hypergumbo_core/frameworks/nextjs.yaml +86 -0
  67. hypergumbo_core/frameworks/nuxt.yaml +143 -0
  68. hypergumbo_core/frameworks/padrino.yaml +170 -0
  69. hypergumbo_core/frameworks/pedestal.yaml +145 -0
  70. hypergumbo_core/frameworks/phoenix.yaml +137 -0
  71. hypergumbo_core/frameworks/play.yaml +92 -0
  72. hypergumbo_core/frameworks/plug.yaml +70 -0
  73. hypergumbo_core/frameworks/pyramid.yaml +69 -0
  74. hypergumbo_core/frameworks/quarkus.yaml +165 -0
  75. hypergumbo_core/frameworks/quart.yaml +62 -0
  76. hypergumbo_core/frameworks/rails.yaml +128 -0
  77. hypergumbo_core/frameworks/remix.yaml +126 -0
  78. hypergumbo_core/frameworks/restify.yaml +197 -0
  79. hypergumbo_core/frameworks/ring-compojure.yaml +155 -0
  80. hypergumbo_core/frameworks/roda.yaml +148 -0
  81. hypergumbo_core/frameworks/rust-web.yaml +139 -0
  82. hypergumbo_core/frameworks/sanic.yaml +57 -0
  83. hypergumbo_core/frameworks/scalatra.yaml +170 -0
  84. hypergumbo_core/frameworks/scotty.yaml +169 -0
  85. hypergumbo_core/frameworks/servant.yaml +112 -0
  86. hypergumbo_core/frameworks/sinatra.yaml +58 -0
  87. hypergumbo_core/frameworks/slim.yaml +77 -0
  88. hypergumbo_core/frameworks/spring-boot.yaml +81 -0
  89. hypergumbo_core/frameworks/sveltekit.yaml +139 -0
  90. hypergumbo_core/frameworks/symfony.yaml +159 -0
  91. hypergumbo_core/frameworks/test-frameworks.yaml +171 -0
  92. hypergumbo_core/frameworks/tornado.yaml +76 -0
  93. hypergumbo_core/frameworks/vapor.yaml +70 -0
  94. hypergumbo_core/frameworks/vertx.yaml +168 -0
  95. hypergumbo_core/frameworks/yii.yaml +125 -0
  96. hypergumbo_core/ir.py +498 -0
  97. hypergumbo_core/limits.py +188 -0
  98. hypergumbo_core/linkers/__init__.py +5 -0
  99. hypergumbo_core/linkers/database_query.py +484 -0
  100. hypergumbo_core/linkers/dependency.py +232 -0
  101. hypergumbo_core/linkers/event_sourcing.py +596 -0
  102. hypergumbo_core/linkers/graphql.py +352 -0
  103. hypergumbo_core/linkers/graphql_resolver.py +482 -0
  104. hypergumbo_core/linkers/grpc.py +613 -0
  105. hypergumbo_core/linkers/http.py +587 -0
  106. hypergumbo_core/linkers/inheritance.py +187 -0
  107. hypergumbo_core/linkers/ipc.py +451 -0
  108. hypergumbo_core/linkers/jni.py +286 -0
  109. hypergumbo_core/linkers/message_queue.py +543 -0
  110. hypergumbo_core/linkers/openapi.py +450 -0
  111. hypergumbo_core/linkers/phoenix_ipc.py +368 -0
  112. hypergumbo_core/linkers/registry.py +710 -0
  113. hypergumbo_core/linkers/route_handler.py +361 -0
  114. hypergumbo_core/linkers/subprocess_cli.py +469 -0
  115. hypergumbo_core/linkers/swift_objc.py +241 -0
  116. hypergumbo_core/linkers/type_hierarchy.py +296 -0
  117. hypergumbo_core/linkers/websocket.py +615 -0
  118. hypergumbo_core/metrics.py +94 -0
  119. hypergumbo_core/paths.py +238 -0
  120. hypergumbo_core/profile.py +1011 -0
  121. hypergumbo_core/ranking.py +755 -0
  122. hypergumbo_core/schema.py +105 -0
  123. hypergumbo_core/selection/__init__.py +68 -0
  124. hypergumbo_core/selection/filters.py +168 -0
  125. hypergumbo_core/selection/language_proportional.py +222 -0
  126. hypergumbo_core/selection/token_budget.py +177 -0
  127. hypergumbo_core/sketch.py +6030 -0
  128. hypergumbo_core/sketch_embeddings.py +1587 -0
  129. hypergumbo_core/slice.py +471 -0
  130. hypergumbo_core/supply_chain.py +393 -0
  131. hypergumbo_core/symbol_resolution.py +679 -0
  132. hypergumbo_core/taxonomy.py +740 -0
  133. hypergumbo_core/user_config.py +192 -0
  134. hypergumbo_core-2.0.0.dist-info/METADATA +64 -0
  135. hypergumbo_core-2.0.0.dist-info/RECORD +137 -0
  136. hypergumbo_core-2.0.0.dist-info/WHEEL +4 -0
  137. hypergumbo_core-2.0.0.dist-info/entry_points.txt +2 -0
@@ -0,0 +1,23 @@
1
+ """Hypergumbo Core: Core infrastructure for repo behavior map generation.
2
+
3
+ This package provides the core infrastructure for static analysis, including:
4
+ - IR (Symbol, Edge, Span) data structures
5
+ - Analysis framework (base classes, registry)
6
+ - Linkers for cross-language/cross-component relationships
7
+ - Framework pattern detection
8
+ - CLI entry point
9
+
10
+ Version Note
11
+ ------------
12
+ - **__version__**: The tool/package version. This version tracks CLI features,
13
+ analyzer additions, and bug fixes. Updated with each release.
14
+
15
+ - **SCHEMA_VERSION** (in schema.py): The output format version. This version
16
+ tracks breaking changes to the JSON output schema. Consumers should check
17
+ schema_version in output to ensure compatibility.
18
+
19
+ These versions are independent. The schema version only changes when the output
20
+ format has breaking changes, while the tool version changes with any release.
21
+ """
22
+ __all__ = ["__version__"]
23
+ __version__ = "2.0.0"
@@ -0,0 +1,4 @@
1
+ from .cli import main
2
+
3
+ if __name__ == "__main__":
4
+ raise SystemExit(main())