mloda-community-example 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,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: mloda-community-example
3
+ Version: 0.2.4
4
+ Summary: Example community FeatureGroup plugin 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"
14
+ Provides-Extra: all
15
+ Requires-Dist: mloda-community-example-a; extra == "all"
16
+ Requires-Dist: mloda-community-example-b; extra == "all"
@@ -0,0 +1,28 @@
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-community-example"
10
+ version = "0.2.4"
11
+ description = "Example community FeatureGroup plugin 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
+ all = ["mloda-community-example-a", "mloda-community-example-b"]
20
+
21
+ [project.urls]
22
+ Homepage = "https://mloda.ai"
23
+ Repository = "https://github.com/mloda-ai/mloda-registry"
24
+
25
+ [tool.setuptools.packages.find]
26
+ where = ["../../../.."]
27
+ include = ["mloda.community.feature_groups.example", "mloda.community.feature_groups.example.*"]
28
+ namespaces = true
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,14 @@
1
+ """Tests for CommunityExampleFeatureGroup."""
2
+
3
+ from mloda.community.feature_groups.example import CommunityExampleFeatureGroup
4
+ from mloda.testing.base import FeatureGroupTestBase
5
+
6
+
7
+ class TestCommunityExampleFeatureGroup(FeatureGroupTestBase):
8
+ """Test CommunityExampleFeatureGroup using FeatureGroupTestBase."""
9
+
10
+ feature_group_class = CommunityExampleFeatureGroup
11
+
12
+ def test_feature_group_class_set(self) -> None:
13
+ """Verify feature_group_class is set."""
14
+ assert self.feature_group_class is CommunityExampleFeatureGroup