-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
131 lines (118 loc) · 3.3 KB
/
Copy pathpyproject.toml
File metadata and controls
131 lines (118 loc) · 3.3 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentkeeper-ai"
version = "1.2.0"
description = "Cognitive continuity infrastructure for long-lived AI agents — cross-model state reconstruction, semantic recall, cognitive compression"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Tom Anciaux Berner", email = "tom@thinklanceai.com" },
]
keywords = [
"ai",
"agents",
"llm",
"memory",
"cognitive",
"continuity",
"openai",
"anthropic",
"claude",
"gemini",
"ollama",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
"Framework :: AsyncIO",
]
dependencies = []
[project.optional-dependencies]
openai = ["openai>=1.30.0"]
anthropic = ["anthropic>=0.30.0"]
gemini = ["google-generativeai>=0.8.0"]
dotenv = ["python-dotenv>=1.0.0"]
semantic = ["sentence-transformers>=3.0.0"]
vec = ["sqlite-vec>=0.1.6"]
encrypted = ["cryptography>=42.0.0"]
mcp = ["fastmcp>=3.0.0"]
fast = ["numpy>=1.24.0"]
all = [
"openai>=1.30.0",
"anthropic>=0.30.0",
"google-generativeai>=0.8.0",
"python-dotenv>=1.0.0",
"sentence-transformers>=3.0.0",
"sqlite-vec>=0.1.6",
"cryptography>=42.0.0",
"fastmcp>=3.0.0",
"numpy>=1.24.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0",
"ruff>=0.6.0",
"mypy>=1.10",
"sqlite-vec>=0.1.6",
"cryptography>=42.0.0",
"fastmcp>=3.0.0",
"numpy>=1.24.0",
]
[project.scripts]
agentkeeper-mcp = "agentkeeper.mcp:serve_cli"
[project.urls]
Homepage = "https://github.com/Thinklanceai/agentkeeper"
Repository = "https://github.com/Thinklanceai/agentkeeper"
Issues = "https://github.com/Thinklanceai/agentkeeper/issues"
[tool.setuptools.packages.find]
include = ["agentkeeper*"]
exclude = ["tests*", "examples*", "src*"]
[tool.setuptools.package-data]
agentkeeper = ["py.typed"]
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
addopts = "-ra --strict-markers"
asyncio_mode = "auto"
[tool.coverage.run]
source = ["agentkeeper"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
ignore_missing_imports = true
# fastmcp ships no type stubs: @mcp.tool is an untyped decorator and
# calls through the resulting objects return Any. Disable only those
# two rules, only for this module; all other strict checks still apply.
[[tool.mypy.overrides]]
module = "agentkeeper.mcp.server"
disallow_untyped_decorators = false
warn_return_any = false