temporal-reasoning 0.3.2__tar.gz → 0.3.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: temporal-reasoning
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Perfect memory. Exact reasoning. Complete history. Bi-temporal graph memory for AI coding agents.
5
5
  Author-email: Aditya Mukhopadhyay <webmaster@adityamukho.com>
6
6
  License: MIT
@@ -2730,5 +2730,10 @@ async def main() -> None:
2730
2730
  )
2731
2731
 
2732
2732
 
2733
- if __name__ == "__main__":
2733
+ def run() -> None:
2734
+ """Sync entry point for the `temporal-reasoning` console script."""
2734
2735
  asyncio.run(main())
2736
+
2737
+
2738
+ if __name__ == "__main__":
2739
+ run()
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "temporal-reasoning"
7
- version = "0.3.2"
7
+ version = "0.3.3"
8
8
  description = "Perfect memory. Exact reasoning. Complete history. Bi-temporal graph memory for AI coding agents."
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -29,7 +29,7 @@ dependencies = [
29
29
  ]
30
30
 
31
31
  [project.scripts]
32
- temporal-reasoning = "mcp_server:main"
32
+ temporal-reasoning = "mcp_server:run"
33
33
 
34
34
  [project.optional-dependencies]
35
35
  bm25 = ["rank-bm25"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: temporal-reasoning
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Perfect memory. Exact reasoning. Complete history. Bi-temporal graph memory for AI coding agents.
5
5
  Author-email: Aditya Mukhopadhyay <webmaster@adityamukho.com>
6
6
  License: MIT
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ temporal-reasoning = mcp_server:run
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- temporal-reasoning = mcp_server:main