robotmem 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.
- robotmem-0.0.1/PKG-INFO +9 -0
- robotmem-0.0.1/pyproject.toml +15 -0
- robotmem-0.0.1/setup.cfg +4 -0
- robotmem-0.0.1/src/robotmem/__init__.py +3 -0
- robotmem-0.0.1/src/robotmem.egg-info/PKG-INFO +9 -0
- robotmem-0.0.1/src/robotmem.egg-info/SOURCES.txt +6 -0
- robotmem-0.0.1/src/robotmem.egg-info/dependency_links.txt +1 -0
- robotmem-0.0.1/src/robotmem.egg-info/top_level.txt +1 -0
robotmem-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: robotmem
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Robot Memory - Persistent memory system for AI agents
|
|
5
|
+
Author: robotmem
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.10
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "robotmem"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Robot Memory - Persistent memory system for AI agents"
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
authors = [{name = "robotmem"}]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
]
|
robotmem-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: robotmem
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Robot Memory - Persistent memory system for AI agents
|
|
5
|
+
Author: robotmem
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.10
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
robotmem
|