-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.02 KB
/
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
[project]
name = "langchain-mcp-tools"
version = "0.1.4"
description = "Model Context Protocol (MCP) To LangChain Tools Conversion Utility"
keywords = [
"modelcontextprotocol",
"mcp",
"mcp-client",
"langchain",
"langchain-python",
"tool-call",
"tool-calling",
"python",
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"jsonschema-pydantic>=0.6",
"langchain>=0.3.14",
"langchain-anthropic>=0.3.1",
"langchain-groq>=0.2.3",
"langchain-openai>=0.3.0",
"langgraph>=0.2.62",
"mcp>=1.2.0",
"pyjson5>=1.6.8",
"pympler>=1.1",
"python-dotenv>=1.0.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"pytest-asyncio>=0.25.2",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
langchain_mcp_tools = ["py.typed"]
[project.urls]
"Bug Tracker" = "https://github.com/hideya/langchain-mcp-tools-py/issues"
"Source Code" = "https://github.com/hideya/langchain-mcp-tools-py"