mloda-registry 0.2.4__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.
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: mloda-registry
3
+ Version: 0.2.4
4
+ Summary: Plugin discovery and search for mloda
5
+ Author-email: Tom Kaltofen <info@mloda.ai>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://mloda.ai
8
+ Project-URL: Repository, https://github.com/mloda-ai/mloda-registry
9
+ Requires-Python: >=3.10
10
+ Requires-Dist: mloda>=0.4.3
11
+ Provides-Extra: dev
12
+ Requires-Dist: mloda-testing; extra == "dev"
13
+ Requires-Dist: pytest; extra == "dev"
@@ -0,0 +1,30 @@
1
+ # AUTO-GENERATED by scripts/generate_pyproject.py
2
+ # Do not edit directly - modify config/shared.toml or config/packages.toml instead
3
+
4
+ [build-system]
5
+ requires = ["setuptools>=61.0"]
6
+ build-backend = "setuptools.build_meta"
7
+
8
+ [project]
9
+ name = "mloda-registry"
10
+ version = "0.2.4"
11
+ description = "Plugin discovery and search for mloda"
12
+ license = "Apache-2.0"
13
+ authors = [{ name = "Tom Kaltofen", email = "info@mloda.ai" }]
14
+ dependencies = ["mloda>=0.4.3"]
15
+ requires-python = ">=3.10"
16
+
17
+ [project.optional-dependencies]
18
+ dev = ["mloda-testing", "pytest"]
19
+
20
+ [project.urls]
21
+ Homepage = "https://mloda.ai"
22
+ Repository = "https://github.com/mloda-ai/mloda-registry"
23
+
24
+ [tool.setuptools.packages.find]
25
+ where = ["../.."]
26
+ include = ["mloda.registry", "mloda.registry.*"]
27
+ namespaces = true
28
+
29
+ [tool.uv.sources]
30
+ mloda-testing = { workspace = true }
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,24 @@
1
+ """Tests for mloda.registry package."""
2
+
3
+ from mloda.registry import discover, search
4
+
5
+
6
+ def test_discover_returns_list() -> None:
7
+ """Verify discover() returns a list."""
8
+ result = discover()
9
+ assert isinstance(result, list)
10
+ assert result == []
11
+
12
+
13
+ def test_search_returns_list() -> None:
14
+ """Verify search() returns a list."""
15
+ result = search()
16
+ assert isinstance(result, list)
17
+ assert result == []
18
+
19
+
20
+ def test_search_with_tags() -> None:
21
+ """Verify search() accepts tags parameter."""
22
+ result = search(tags=["community", "timeseries"])
23
+ assert isinstance(result, list)
24
+ assert result == []