mlparty 0.0.1a1__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.
- mlparty-0.0.1a1/PKG-INFO +11 -0
- mlparty-0.0.1a1/README.md +3 -0
- mlparty-0.0.1a1/pyproject.toml +14 -0
- mlparty-0.0.1a1/setup.cfg +4 -0
- mlparty-0.0.1a1/src/mlparty/__init__.py +3 -0
- mlparty-0.0.1a1/src/mlparty.egg-info/PKG-INFO +11 -0
- mlparty-0.0.1a1/src/mlparty.egg-info/SOURCES.txt +7 -0
- mlparty-0.0.1a1/src/mlparty.egg-info/dependency_links.txt +1 -0
- mlparty-0.0.1a1/src/mlparty.egg-info/top_level.txt +1 -0
mlparty-0.0.1a1/PKG-INFO
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mlparty
|
|
3
|
+
Version: 0.0.1a1
|
|
4
|
+
Summary: Agent-native ML experiment tracking (pre-release placeholder)
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# mlparty
|
|
10
|
+
|
|
11
|
+
An agent-native platform for ML experiment tracking — coming soon.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mlparty"
|
|
7
|
+
version = "0.0.1a1"
|
|
8
|
+
description = "Agent-native ML experiment tracking (pre-release placeholder)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
|
|
13
|
+
[tool.setuptools.packages.find]
|
|
14
|
+
where = ["src"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mlparty
|
|
3
|
+
Version: 0.0.1a1
|
|
4
|
+
Summary: Agent-native ML experiment tracking (pre-release placeholder)
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# mlparty
|
|
10
|
+
|
|
11
|
+
An agent-native platform for ML experiment tracking — coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mlparty
|