fgraph 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.
fgraph-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: fgraph
3
+ Version: 0.0.1
4
+ Summary: A fact graph in a single SQLite file — embedded temporal fact store for AI agents (name reservation; v0.1 in development)
5
+ Author: Médéric Hurier (Fmind)
6
+ Author-email: Médéric Hurier (Fmind) <mederic.hurier@fmind.dev>
7
+ License-Expression: MIT
8
+ Classifier: Development Status :: 2 - Pre-Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Topic :: Database
12
+ Requires-Python: >=3.10
13
+ Project-URL: Homepage, https://fmind.github.io/fgraph/
14
+ Project-URL: Repository, https://github.com/fmind/fgraph
15
+ Project-URL: Specification, https://github.com/fmind/fgraph/blob/main/SPEC.md
16
+ Description-Content-Type: text/markdown
17
+
18
+ # fgraph
19
+
20
+ **A fact graph in a single SQLite file — every fact remembers when and why it became true, and when it stopped.**
21
+
22
+ fgraph is an embedded temporal fact store: immutable facts with full history, provenance, time travel (`at`, `history`, `diff`, `why`, `undo`), schema-optional attributes, hybrid keyword + vector search, and an MCP server for AI agents. Python and Go, one shared file format, no server.
23
+
24
+ **This 0.0.1 release reserves the package name.** The specification is complete and v0.1 is under active development:
25
+
26
+ - Repository: <https://github.com/fmind/fgraph>
27
+ - Specification: <https://github.com/fmind/fgraph/blob/main/SPEC.md>
28
+ - Documentation: <https://fmind.github.io/fgraph/>
29
+
30
+ License: MIT — © 2026 Médéric Hurier (Fmind).
fgraph-0.0.1/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # fgraph
2
+
3
+ **A fact graph in a single SQLite file — every fact remembers when and why it became true, and when it stopped.**
4
+
5
+ fgraph is an embedded temporal fact store: immutable facts with full history, provenance, time travel (`at`, `history`, `diff`, `why`, `undo`), schema-optional attributes, hybrid keyword + vector search, and an MCP server for AI agents. Python and Go, one shared file format, no server.
6
+
7
+ **This 0.0.1 release reserves the package name.** The specification is complete and v0.1 is under active development:
8
+
9
+ - Repository: <https://github.com/fmind/fgraph>
10
+ - Specification: <https://github.com/fmind/fgraph/blob/main/SPEC.md>
11
+ - Documentation: <https://fmind.github.io/fgraph/>
12
+
13
+ License: MIT — © 2026 Médéric Hurier (Fmind).
@@ -0,0 +1,26 @@
1
+ [project]
2
+ name = "fgraph"
3
+ version = "0.0.1"
4
+ description = "A fact graph in a single SQLite file — embedded temporal fact store for AI agents (name reservation; v0.1 in development)"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ requires-python = ">=3.10"
8
+ classifiers = [
9
+ "Development Status :: 2 - Pre-Alpha",
10
+ "Intended Audience :: Developers",
11
+ "Programming Language :: Python :: 3",
12
+ "Topic :: Database",
13
+ ]
14
+
15
+ [[project.authors]]
16
+ name = "Médéric Hurier (Fmind)"
17
+ email = "mederic.hurier@fmind.dev"
18
+
19
+ [project.urls]
20
+ Homepage = "https://fmind.github.io/fgraph/"
21
+ Repository = "https://github.com/fmind/fgraph"
22
+ Specification = "https://github.com/fmind/fgraph/blob/main/SPEC.md"
23
+
24
+ [build-system]
25
+ requires = ["uv_build>=0.8,<2"]
26
+ build-backend = "uv_build"
@@ -0,0 +1,23 @@
1
+ [project]
2
+ name = "fgraph"
3
+ version = "0.0.1"
4
+ description = "A fact graph in a single SQLite file — embedded temporal fact store for AI agents (name reservation; v0.1 in development)"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ requires-python = ">=3.10"
8
+ authors = [{ name = "Médéric Hurier (Fmind)", email = "mederic.hurier@fmind.dev" }]
9
+ classifiers = [
10
+ "Development Status :: 2 - Pre-Alpha",
11
+ "Intended Audience :: Developers",
12
+ "Programming Language :: Python :: 3",
13
+ "Topic :: Database",
14
+ ]
15
+
16
+ [project.urls]
17
+ Homepage = "https://fmind.github.io/fgraph/"
18
+ Repository = "https://github.com/fmind/fgraph"
19
+ Specification = "https://github.com/fmind/fgraph/blob/main/SPEC.md"
20
+
21
+ [build-system]
22
+ requires = ["uv_build>=0.8,<2"]
23
+ build-backend = "uv_build"
@@ -0,0 +1,7 @@
1
+ """fgraph — a fact graph in a single SQLite file.
2
+
3
+ This 0.0.1 release reserves the package name; v0.1 is under active development
4
+ at https://github.com/fmind/fgraph (specification: SPEC.md).
5
+ """
6
+
7
+ __version__ = "0.0.1"