mloda-enterprise 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.
- mloda_enterprise-0.2.4/PKG-INFO +12 -0
- mloda_enterprise-0.2.4/mloda_enterprise.egg-info/PKG-INFO +12 -0
- mloda_enterprise-0.2.4/mloda_enterprise.egg-info/SOURCES.txt +6 -0
- mloda_enterprise-0.2.4/mloda_enterprise.egg-info/dependency_links.txt +1 -0
- mloda_enterprise-0.2.4/mloda_enterprise.egg-info/requires.txt +3 -0
- mloda_enterprise-0.2.4/mloda_enterprise.egg-info/top_level.txt +1 -0
- mloda_enterprise-0.2.4/pyproject.toml +27 -0
- mloda_enterprise-0.2.4/setup.cfg +4 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mloda-enterprise
|
|
3
|
+
Version: 0.2.4
|
|
4
|
+
Summary: All enterprise plugins for mloda (meta-package)
|
|
5
|
+
Author-email: Tom Kaltofen <info@mloda.ai>
|
|
6
|
+
License-Expression: LicenseRef-Proprietary
|
|
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-enterprise-example>=0.2.0
|
|
11
|
+
Requires-Dist: mloda-enterprise-compute-frameworks-example>=0.2.0
|
|
12
|
+
Requires-Dist: mloda-enterprise-extenders-example>=0.2.0
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mloda-enterprise
|
|
3
|
+
Version: 0.2.4
|
|
4
|
+
Summary: All enterprise plugins for mloda (meta-package)
|
|
5
|
+
Author-email: Tom Kaltofen <info@mloda.ai>
|
|
6
|
+
License-Expression: LicenseRef-Proprietary
|
|
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-enterprise-example>=0.2.0
|
|
11
|
+
Requires-Dist: mloda-enterprise-compute-frameworks-example>=0.2.0
|
|
12
|
+
Requires-Dist: mloda-enterprise-extenders-example>=0.2.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
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-enterprise"
|
|
10
|
+
version = "0.2.4"
|
|
11
|
+
description = "All enterprise plugins for mloda (meta-package)"
|
|
12
|
+
license = "LicenseRef-Proprietary"
|
|
13
|
+
authors = [{ name = "Tom Kaltofen", email = "info@mloda.ai" }]
|
|
14
|
+
dependencies = ["mloda-enterprise-example>=0.2.0", "mloda-enterprise-compute-frameworks-example>=0.2.0", "mloda-enterprise-extenders-example>=0.2.0"]
|
|
15
|
+
requires-python = ">=3.10"
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://mloda.ai"
|
|
19
|
+
Repository = "https://github.com/mloda-ai/mloda-registry"
|
|
20
|
+
|
|
21
|
+
[tool.setuptools]
|
|
22
|
+
packages = []
|
|
23
|
+
|
|
24
|
+
[tool.uv.sources]
|
|
25
|
+
mloda-enterprise-example = { workspace = true }
|
|
26
|
+
mloda-enterprise-compute-frameworks-example = { workspace = true }
|
|
27
|
+
mloda-enterprise-extenders-example = { workspace = true }
|