magnemo 0.0.1__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.
- magnemo-0.0.1/PKG-INFO +22 -0
- magnemo-0.0.1/README.md +8 -0
- magnemo-0.0.1/magnemo/__init__.py +2 -0
- magnemo-0.0.1/magnemo.egg-info/PKG-INFO +22 -0
- magnemo-0.0.1/magnemo.egg-info/SOURCES.txt +7 -0
- magnemo-0.0.1/magnemo.egg-info/dependency_links.txt +1 -0
- magnemo-0.0.1/magnemo.egg-info/top_level.txt +1 -0
- magnemo-0.0.1/pyproject.toml +23 -0
- magnemo-0.0.1/setup.cfg +4 -0
magnemo-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: magnemo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Magnemo — governed memory for AI agents. Full release pending.
|
|
5
|
+
Author: SVTech Inc. · Silver Valley Technologies
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Keywords: memory,ai-agents,mcp,governance,provenance
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# Magnemo
|
|
16
|
+
|
|
17
|
+
**Magnemo — governed memory for AI agents. Full release pending.**
|
|
18
|
+
|
|
19
|
+
Agents stage; humans promote. Every memory carries its provenance. This is a name-holding
|
|
20
|
+
placeholder (0.0.1); the first functional release will follow under this name.
|
|
21
|
+
|
|
22
|
+
SVTech Inc. · Silver Valley Technologies
|
magnemo-0.0.1/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Magnemo
|
|
2
|
+
|
|
3
|
+
**Magnemo — governed memory for AI agents. Full release pending.**
|
|
4
|
+
|
|
5
|
+
Agents stage; humans promote. Every memory carries its provenance. This is a name-holding
|
|
6
|
+
placeholder (0.0.1); the first functional release will follow under this name.
|
|
7
|
+
|
|
8
|
+
SVTech Inc. · Silver Valley Technologies
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: magnemo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Magnemo — governed memory for AI agents. Full release pending.
|
|
5
|
+
Author: SVTech Inc. · Silver Valley Technologies
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Keywords: memory,ai-agents,mcp,governance,provenance
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# Magnemo
|
|
16
|
+
|
|
17
|
+
**Magnemo — governed memory for AI agents. Full release pending.**
|
|
18
|
+
|
|
19
|
+
Agents stage; humans promote. Every memory carries its provenance. This is a name-holding
|
|
20
|
+
placeholder (0.0.1); the first functional release will follow under this name.
|
|
21
|
+
|
|
22
|
+
SVTech Inc. · Silver Valley Technologies
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
magnemo
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "magnemo"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Magnemo — governed memory for AI agents. Full release pending."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "Proprietary"}
|
|
12
|
+
authors = [{name = "SVTech Inc. · Silver Valley Technologies"}]
|
|
13
|
+
keywords = ["memory", "ai-agents", "mcp", "governance", "provenance"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
dependencies = []
|
|
21
|
+
|
|
22
|
+
[tool.setuptools]
|
|
23
|
+
packages = ["magnemo"]
|
magnemo-0.0.1/setup.cfg
ADDED