-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.57 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentrelay-protocol"
version = "0.6.0"
description = "Agent Relay — multi-agent coordination layer"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [{ name = "Mnemox AI" }]
readme = "README.md"
keywords = ["ai-agent", "mcp", "microtask", "validation", "multi-agent", "fastapi"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi[standard]>=0.135",
"uvicorn[standard]>=0.34",
"pydantic>=2.10",
"pydantic-settings>=2.6",
"sqlalchemy[asyncio]>=2.0.36",
"asyncpg>=0.30",
"alembic>=1.14",
"python-dotenv>=1.0",
"httpx>=0.28",
"jsonschema>=4.23",
"redis[hiredis]>=5.0",
"fastmcp>=3.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"httpx>=0.27",
"aiosqlite>=0.20",
]
lint = [
"ruff>=0.3",
]
dev = [
"agentrelay-protocol[test,lint]",
]
[project.scripts]
agentrelay = "agentrelay.worker.cli:main"
[project.urls]
Homepage = "https://github.com/mnemox-ai/AgentRelay"
Repository = "https://github.com/mnemox-ai/AgentRelay"
Issues = "https://github.com/mnemox-ai/AgentRelay/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]