jadio-long-term-memory 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.
- jadio_long_term_memory-0.0.1/.gitignore +4 -0
- jadio_long_term_memory-0.0.1/LICENSE +1 -0
- jadio_long_term_memory-0.0.1/PKG-INFO +13 -0
- jadio_long_term_memory-0.0.1/README.md +3 -0
- jadio_long_term_memory-0.0.1/pyproject.toml +21 -0
- jadio_long_term_memory-0.0.1/src/jadio_long_term_memory/__init__.py +1 -0
- jadio_long_term_memory-0.0.1/src/jadio_long_term_memory/ai/__init__.py +0 -0
- jadio_long_term_memory-0.0.1/src/jadio_long_term_memory/cli/__init__.py +0 -0
- jadio_long_term_memory-0.0.1/src/jadio_long_term_memory/cli/clicommands.json +1 -0
- jadio_long_term_memory-0.0.1/src/jadio_long_term_memory/cli/main.py +1 -0
- jadio_long_term_memory-0.0.1/src/jadio_long_term_memory/cli/run.py +0 -0
- jadio_long_term_memory-0.0.1/src/jadio_long_term_memory/core/__init__.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
MIT License
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: jadio-long-term-memory
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: Jadio-compatible extension package
|
5
|
+
License-Expression: MIT
|
6
|
+
License-File: LICENSE
|
7
|
+
Requires-Python: >=3.8
|
8
|
+
Requires-Dist: jadio>=0.0.2
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
|
11
|
+
# jadio-long-term-memory
|
12
|
+
|
13
|
+
Generated by JPC.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
[build-system]
|
3
|
+
requires = ["hatchling"]
|
4
|
+
build-backend = "hatchling.build"
|
5
|
+
|
6
|
+
[project]
|
7
|
+
name = "jadio-long-term-memory"
|
8
|
+
dynamic = ["version"]
|
9
|
+
description = "Jadio-compatible extension package"
|
10
|
+
readme = "README.md"
|
11
|
+
license = "MIT"
|
12
|
+
requires-python = ">=3.8"
|
13
|
+
dependencies = [
|
14
|
+
"jadio>=0.0.2",
|
15
|
+
]
|
16
|
+
|
17
|
+
[tool.hatch.version]
|
18
|
+
path = "src/jadio_long_term_memory/__init__.py"
|
19
|
+
|
20
|
+
[tool.hatch.build.targets.wheel]
|
21
|
+
packages = ["src/jadio_long_term_memory"]
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.0.1"
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
{}
|
@@ -0,0 +1 @@
|
|
1
|
+
# Entry point for CLI
|
File without changes
|
File without changes
|