flexmem 0.1.0__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.
- flexmem-0.1.0/PKG-INFO +20 -0
- flexmem-0.1.0/README.md +5 -0
- flexmem-0.1.0/pyproject.toml +22 -0
- flexmem-0.1.0/src/flexmem/__init__.py +4 -0
flexmem-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flexmem
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Permanent memory for Claude Code sessions. Your intellectual capital, preserved.
|
|
5
|
+
Project-URL: Homepage, https://axp.systems
|
|
6
|
+
Project-URL: Repository, https://github.com/axp-systems/flexmem
|
|
7
|
+
Author-email: AXP Systems <hello@axp.systems>
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: ai,claude,knowledge,mcp,memory
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# flexmem
|
|
17
|
+
|
|
18
|
+
Permanent memory for Claude Code sessions. Your intellectual capital, preserved.
|
|
19
|
+
|
|
20
|
+
Coming soon. Follow [@axp_systems](https://axp.systems).
|
flexmem-0.1.0/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "flexmem"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Permanent memory for Claude Code sessions. Your intellectual capital, preserved."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "AXP Systems", email = "hello@axp.systems" }]
|
|
12
|
+
keywords = ["mcp", "claude", "memory", "knowledge", "ai"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 3 - Alpha",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Topic :: Software Development :: Libraries",
|
|
17
|
+
]
|
|
18
|
+
requires-python = ">=3.10"
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://axp.systems"
|
|
22
|
+
Repository = "https://github.com/axp-systems/flexmem"
|