swimc-plugin-model-kp 0.1.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.
@@ -0,0 +1,4 @@
1
+ from .plugin import get_plugin
2
+
3
+ __all__ = ["get_plugin"]
4
+
@@ -0,0 +1,12 @@
1
+ from swimc.adapters.models import run_kp_model
2
+ from swimc.cli_specs import add_model_arguments
3
+ from swimc_plugin_api import PluginMetadata, SimplePlugin
4
+
5
+
6
+ def get_plugin():
7
+ return SimplePlugin(
8
+ PluginMetadata(kind="model", name="kp", summary="Run the KP forecast model."),
9
+ runner=run_kp_model,
10
+ register_arguments=add_model_arguments,
11
+ )
12
+
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: swimc-plugin-model-kp
3
+ Version: 0.1.0
4
+ Requires-Python: <3.11,>=3.10
5
+ Requires-Dist: swimc>=0.1.0
@@ -0,0 +1,7 @@
1
+ swimc_plugin_model_kp/__init__.py,sha256=kG79pzz9ACVCbls0T5aCYV1iyMjjw8nlsDxL3Kf4ZX8,58
2
+ swimc_plugin_model_kp/plugin.py,sha256=VV7lWlxIQH0BWmPOaecFOSfhDsH8Ak4x76WSaLlvt2Q,369
3
+ swimc_plugin_model_kp-0.1.0.dist-info/METADATA,sha256=FfmfV87ypzb2NiZZQrfkANeUSu2fJrIJlBvAVvDQcq4,128
4
+ swimc_plugin_model_kp-0.1.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
5
+ swimc_plugin_model_kp-0.1.0.dist-info/entry_points.txt,sha256=YBKqSqL79-4T5OM8JzJnewTo5MSbu7G8oAmQVHLm1sw,68
6
+ swimc_plugin_model_kp-0.1.0.dist-info/top_level.txt,sha256=GDBNMUiqpsoVhF7P6uX2DqV--bFnIHagvjWC4_idgKk,22
7
+ swimc_plugin_model_kp-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [swimc.plugins.models]
2
+ kp = swimc_plugin_model_kp.plugin:get_plugin
@@ -0,0 +1 @@
1
+ swimc_plugin_model_kp