engramdb-python 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.
@@ -0,0 +1,28 @@
1
+ # Rust / build
2
+ /target
3
+ /target/
4
+ **/target/
5
+ Cargo.lock
6
+
7
+ # External weights (symlinked from external SSD, never committed)
8
+ /data/
9
+ /data
10
+
11
+ # Probe / bench outputs
12
+ /probes/out*/
13
+ *.csv
14
+ probe-report*.md
15
+ *.tmp
16
+
17
+ # Python
18
+ __pycache__/
19
+ *.pyc
20
+ .venv/
21
+ venv/
22
+
23
+ # mac
24
+ .DS_Store
25
+
26
+ # logs
27
+ *.log
28
+ /download.log
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.5
2
+ Name: engramdb-python
3
+ Version: 0.1.0
4
+ Summary: Disk-first storage engine for Engram/PLE n-gram memory tables (Rust core, Python bindings landing in v0.2)
5
+ Author: EngramDB Authors
6
+ License: Apache-2.0
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Topic :: Database
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+
15
+ ## EngramDB 的 Python 分发包
16
+
17
+ Disk-first storage engine for **Engram / PLE n-gram memory tables** (Rust).
18
+
19
+ > **分发名 `engramdb-python`(PyPI 相似名规避);import 名仍为 `engramdb`。** v0.1.0 占位包:Rust 核心(crates.io: `engramdb-keygen`/`engramdb-core`/`engramdb-io`/`engramdb`)与 PyO3 绑定正在开发中;本包于 0.1.0 仅占名 + 版本声明。完整 API / 文档随 0.2.0 发布。
20
+
21
+ ## 定位(一句话)
22
+
23
+ 让"确定性哈希的 n-gram 记忆表"(Qwen PLE、DeepSeek Engram 等)像数据库一样落盘、建索引、预取、服务化——单机 CPU+NVMe 低延迟推理 / 高吞吐训练预处理。
24
+
25
+ 详细文档见上游仓库 `docs/`(design.md / specifications / roadmap)。
@@ -0,0 +1,11 @@
1
+ ## EngramDB 的 Python 分发包
2
+
3
+ Disk-first storage engine for **Engram / PLE n-gram memory tables** (Rust).
4
+
5
+ > **分发名 `engramdb-python`(PyPI 相似名规避);import 名仍为 `engramdb`。** v0.1.0 占位包:Rust 核心(crates.io: `engramdb-keygen`/`engramdb-core`/`engramdb-io`/`engramdb`)与 PyO3 绑定正在开发中;本包于 0.1.0 仅占名 + 版本声明。完整 API / 文档随 0.2.0 发布。
6
+
7
+ ## 定位(一句话)
8
+
9
+ 让"确定性哈希的 n-gram 记忆表"(Qwen PLE、DeepSeek Engram 等)像数据库一样落盘、建索引、预取、服务化——单机 CPU+NVMe 低延迟推理 / 高吞吐训练预处理。
10
+
11
+ 详细文档见上游仓库 `docs/`(design.md / specifications / roadmap)。
@@ -0,0 +1,10 @@
1
+ """EngramDB: disk-first storage engine for Engram/PLE n-gram memory tables.
2
+
3
+ 0.1.0 = placeholder package (name reservation).
4
+ Rust core & PyO3 bindings will ship in a later release.
5
+ """
6
+
7
+ __version__ = "0.1.0"
8
+
9
+ def __repr__() -> str: # pragma: no cover
10
+ return "<engramdb 0.1.0 placeholder>"
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "engramdb-python"
7
+ version = "0.1.0"
8
+ description = "Disk-first storage engine for Engram/PLE n-gram memory tables (Rust core, Python bindings landing in v0.2)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "EngramDB Authors" }]
13
+ classifiers = [
14
+ "Development Status :: 3 - Alpha",
15
+ "Intended Audience :: Developers",
16
+ "Topic :: Database",
17
+ "License :: OSI Approved :: Apache Software License",
18
+ "Programming Language :: Python :: 3",
19
+ ]
20
+
21
+ [tool.hatch.build]
22
+ packages = ["engramdb"]