-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 1.19 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cognirelay"
version = "1.4.14"
description = "Self-hosted continuity and collaboration substrate for autonomous agents with bounded, recoverable memory and explicit restart orientation"
readme = "README-PYPI.md"
requires-python = ">=3.12"
keywords = [
"mcp",
"ai-collaboration",
"agent-infrastructure",
"continuity",
"agent-memory",
"autonomous-agents",
"context-recovery",
"fastapi",
"long-horizon-agents",
"multi-agent-systems",
"self-hosted",
"session-recovery",
"agent-continuity",
"continuity-infrastructure",
"recoverable-memory",
]
dependencies = [
"fastapi>=0.115,<1",
"uvicorn>=0.30,<1",
"pydantic>=2.7,<3",
"python-dotenv>=1.0,<2",
"markdown>=3.6,<4",
"bleach>=6,<7",
]
[project.scripts]
cognirelay = "cognirelay.cli:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["app*", "cognirelay*"]
[tool.setuptools.package-data]
app = ["ui/templates/**", "ui/static/**"]
[tool.ruff]
target-version = "py312"
line-length = 200
[tool.ruff.lint]
select = ["E", "F"]