-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-sd"
version = "0.1.2"
description = "MCP-SD reference implementation: Selective Disclosure for MCP with a Server-to-Server data plane"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.26.0,<2.0",
"httpx>=0.27.0",
"starlette>=0.27.0",
"uvicorn>=0.23.0",
"pydantic>=2.0",
"anyio>=4.0",
]
[project.urls]
Homepage = "https://mcp-sd.github.io/"
Repository = "https://github.com/mcp-sd/python-sdk"
Documentation = "https://mcp-sd.github.io/"
Issues = "https://github.com/mcp-sd/python-sdk/issues"
[project.optional-dependencies]
demos = [
"matplotlib>=3.7",
"anthropic>=0.40.0",
"openai>=1.0.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-timeout>=2.2",
]
inspector = [
"mcp[cli]>=1.26.0,<2.0",
]
# Agent-framework adapters (Layer 2). Install only what you need.
claude-agent = [
"claude-agent-sdk>=0.1.0",
]
langgraph = [
"langgraph>=0.2.0",
"langchain-core>=0.3.0",
]
agents = [
"claude-agent-sdk>=0.1.0",
"langgraph>=0.2.0",
"langchain-core>=0.3.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_sd"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]