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.
- hypergumbo_core/__init__.py +23 -0
- hypergumbo_core/__main__.py +4 -0
- hypergumbo_core/_embedding_data.py +39 -0
- hypergumbo_core/analyze/__init__.py +1 -0
- hypergumbo_core/analyze/all_analyzers.py +230 -0
- hypergumbo_core/analyze/base.py +279 -0
- hypergumbo_core/analyze/registry.py +182 -0
- hypergumbo_core/build_grammars.py +312 -0
- hypergumbo_core/catalog.py +619 -0
- hypergumbo_core/cli.py +3336 -0
- hypergumbo_core/compact.py +1235 -0
- hypergumbo_core/datamodels.py +381 -0
- hypergumbo_core/discovery.py +130 -0
- hypergumbo_core/entrypoints.py +571 -0
- hypergumbo_core/framework_patterns.py +1221 -0
- hypergumbo_core/frameworks/adonisjs.yaml +114 -0
- hypergumbo_core/frameworks/aiohttp.yaml +72 -0
- hypergumbo_core/frameworks/akka-http.yaml +97 -0
- hypergumbo_core/frameworks/android.yaml +43 -0
- hypergumbo_core/frameworks/aspnet.yaml +99 -0
- hypergumbo_core/frameworks/bottle.yaml +46 -0
- hypergumbo_core/frameworks/cakephp.yaml +112 -0
- hypergumbo_core/frameworks/celery.yaml +73 -0
- hypergumbo_core/frameworks/cli-go.yaml +70 -0
- hypergumbo_core/frameworks/cli-js.yaml +89 -0
- hypergumbo_core/frameworks/cli-ruby.yaml +86 -0
- hypergumbo_core/frameworks/cli-rust.yaml +53 -0
- hypergumbo_core/frameworks/cli.yaml +92 -0
- hypergumbo_core/frameworks/codeigniter.yaml +182 -0
- hypergumbo_core/frameworks/config-conventions.yaml +144 -0
- hypergumbo_core/frameworks/django.yaml +126 -0
- hypergumbo_core/frameworks/electron.yaml +92 -0
- hypergumbo_core/frameworks/express.yaml +129 -0
- hypergumbo_core/frameworks/falcon.yaml +66 -0
- hypergumbo_core/frameworks/fastapi.yaml +67 -0
- hypergumbo_core/frameworks/fastify.yaml +76 -0
- hypergumbo_core/frameworks/feathers.yaml +133 -0
- hypergumbo_core/frameworks/flask-appbuilder.yaml +73 -0
- hypergumbo_core/frameworks/flask.yaml +88 -0
- hypergumbo_core/frameworks/fuelphp.yaml +121 -0
- hypergumbo_core/frameworks/go-web.yaml +102 -0
- hypergumbo_core/frameworks/grape.yaml +77 -0
- hypergumbo_core/frameworks/graphql-python.yaml +105 -0
- hypergumbo_core/frameworks/graphql-ruby.yaml +83 -0
- hypergumbo_core/frameworks/graphql.yaml +104 -0
- hypergumbo_core/frameworks/hanami.yaml +122 -0
- hypergumbo_core/frameworks/hapi.yaml +86 -0
- hypergumbo_core/frameworks/http4k.yaml +127 -0
- hypergumbo_core/frameworks/http4s.yaml +150 -0
- hypergumbo_core/frameworks/javalin.yaml +178 -0
- hypergumbo_core/frameworks/jax-rs.yaml +41 -0
- hypergumbo_core/frameworks/koa.yaml +89 -0
- hypergumbo_core/frameworks/ktor.yaml +65 -0
- hypergumbo_core/frameworks/laminas.yaml +125 -0
- hypergumbo_core/frameworks/language-conventions.yaml +98 -0
- hypergumbo_core/frameworks/laravel.yaml +179 -0
- hypergumbo_core/frameworks/library-exports.yaml +48 -0
- hypergumbo_core/frameworks/litestar.yaml +60 -0
- hypergumbo_core/frameworks/lumen.yaml +180 -0
- hypergumbo_core/frameworks/main-functions.yaml +87 -0
- hypergumbo_core/frameworks/masonite.yaml +90 -0
- hypergumbo_core/frameworks/micronaut.yaml +108 -0
- hypergumbo_core/frameworks/naming-conventions.yaml +39 -0
- hypergumbo_core/frameworks/nestjs.yaml +60 -0
- hypergumbo_core/frameworks/nex.yaml +85 -0
- hypergumbo_core/frameworks/nextjs.yaml +86 -0
- hypergumbo_core/frameworks/nuxt.yaml +143 -0
- hypergumbo_core/frameworks/padrino.yaml +170 -0
- hypergumbo_core/frameworks/pedestal.yaml +145 -0
- hypergumbo_core/frameworks/phoenix.yaml +137 -0
- hypergumbo_core/frameworks/play.yaml +92 -0
- hypergumbo_core/frameworks/plug.yaml +70 -0
- hypergumbo_core/frameworks/pyramid.yaml +69 -0
- hypergumbo_core/frameworks/quarkus.yaml +165 -0
- hypergumbo_core/frameworks/quart.yaml +62 -0
- hypergumbo_core/frameworks/rails.yaml +128 -0
- hypergumbo_core/frameworks/remix.yaml +126 -0
- hypergumbo_core/frameworks/restify.yaml +197 -0
- hypergumbo_core/frameworks/ring-compojure.yaml +155 -0
- hypergumbo_core/frameworks/roda.yaml +148 -0
- hypergumbo_core/frameworks/rust-web.yaml +139 -0
- hypergumbo_core/frameworks/sanic.yaml +57 -0
- hypergumbo_core/frameworks/scalatra.yaml +170 -0
- hypergumbo_core/frameworks/scotty.yaml +169 -0
- hypergumbo_core/frameworks/servant.yaml +112 -0
- hypergumbo_core/frameworks/sinatra.yaml +58 -0
- hypergumbo_core/frameworks/slim.yaml +77 -0
- hypergumbo_core/frameworks/spring-boot.yaml +81 -0
- hypergumbo_core/frameworks/sveltekit.yaml +139 -0
- hypergumbo_core/frameworks/symfony.yaml +159 -0
- hypergumbo_core/frameworks/test-frameworks.yaml +171 -0
- hypergumbo_core/frameworks/tornado.yaml +76 -0
- hypergumbo_core/frameworks/vapor.yaml +70 -0
- hypergumbo_core/frameworks/vertx.yaml +168 -0
- hypergumbo_core/frameworks/yii.yaml +125 -0
- hypergumbo_core/ir.py +498 -0
- hypergumbo_core/limits.py +188 -0
- hypergumbo_core/linkers/__init__.py +5 -0
- hypergumbo_core/linkers/database_query.py +484 -0
- hypergumbo_core/linkers/dependency.py +232 -0
- hypergumbo_core/linkers/event_sourcing.py +596 -0
- hypergumbo_core/linkers/graphql.py +352 -0
- hypergumbo_core/linkers/graphql_resolver.py +482 -0
- hypergumbo_core/linkers/grpc.py +613 -0
- hypergumbo_core/linkers/http.py +587 -0
- hypergumbo_core/linkers/inheritance.py +187 -0
- hypergumbo_core/linkers/ipc.py +451 -0
- hypergumbo_core/linkers/jni.py +286 -0
- hypergumbo_core/linkers/message_queue.py +543 -0
- hypergumbo_core/linkers/openapi.py +450 -0
- hypergumbo_core/linkers/phoenix_ipc.py +368 -0
- hypergumbo_core/linkers/registry.py +710 -0
- hypergumbo_core/linkers/route_handler.py +361 -0
- hypergumbo_core/linkers/subprocess_cli.py +469 -0
- hypergumbo_core/linkers/swift_objc.py +241 -0
- hypergumbo_core/linkers/type_hierarchy.py +296 -0
- hypergumbo_core/linkers/websocket.py +615 -0
- hypergumbo_core/metrics.py +94 -0
- hypergumbo_core/paths.py +238 -0
- hypergumbo_core/profile.py +1011 -0
- hypergumbo_core/ranking.py +755 -0
- hypergumbo_core/schema.py +105 -0
- hypergumbo_core/selection/__init__.py +68 -0
- hypergumbo_core/selection/filters.py +168 -0
- hypergumbo_core/selection/language_proportional.py +222 -0
- hypergumbo_core/selection/token_budget.py +177 -0
- hypergumbo_core/sketch.py +6030 -0
- hypergumbo_core/sketch_embeddings.py +1587 -0
- hypergumbo_core/slice.py +471 -0
- hypergumbo_core/supply_chain.py +393 -0
- hypergumbo_core/symbol_resolution.py +679 -0
- hypergumbo_core/taxonomy.py +740 -0
- hypergumbo_core/user_config.py +192 -0
- hypergumbo_core-2.0.0.dist-info/METADATA +64 -0
- hypergumbo_core-2.0.0.dist-info/RECORD +137 -0
- hypergumbo_core-2.0.0.dist-info/WHEEL +4 -0
- 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"
|