-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (21 loc) · 829 Bytes
/
Copy pathpyproject.toml
File metadata and controls
26 lines (21 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pbuffer"
version = "0.2.0"
description = "A world-state database: an append-only log of everything true in a world - places, people, objects, knowledge, time. Deploy it under a game, AI agent, or real-world tracker for permanent, queryable world memory: current state, location, history, and who-knows-what, answered by deterministic queries instead of model calls."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=8", "anyio>=4"]
mcp = ["mcp>=1.28,<2"]
[project.scripts]
patternbuffer-mcp = "patternbuffer.mcp:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"