-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
50 lines (45 loc) · 1018 Bytes
/
pyproject.toml
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
[project]
name = "mcpadapt"
dynamic = ["version"]
description = "Adapt MCP servers to many agentic framework."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.2.0",
"jsonref>=1.1.0",
"python-dotenv>=1.0.1",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
smolagents = [
"smolagents>=1.2.2",
]
langchain = [
"langchain>=0.3.14",
"langchain-anthropic>=0.3.1",
"langgraph>=0.2.62",
]
test = [
"pytest-asyncio>=0.25.2",
"pytest>=8.3.4",
"mcpadapt[langchain]",
"mcpadapt[smolagents]"
]
[tool.hatch.version]
path = "src/mcpadapt/__init__.py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"pre-commit>=4.0.1",
"ruff>=0.9.1",
]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
asyncio_mode = "auto"