-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
34 lines (31 loc) · 879 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
[project]
name = "langgraph-mcp"
version = "0.0.1"
description = "LangGraph solution template for MCP"
authors = [
{ name = "Pranav Dhoolia", email = "dhoolia.pranav@gmail.com" },
{ name = "Praneet Dhoolia", email = "praneet.dhoolia@gmail.com" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"asyncio>=3.4.3",
"langchain>=0.2.17",
"langchain-core>=0.3.21",
"langchain-milvus>=0.1.7",
"langchain-openai>=0.2.11",
"langgraph>=0.2.56",
"mcp>=1.0.0",
"openai>=1.57.0",
"python-dotenv>=1.0.1"
]
[project.optional-dependencies]
dev = ["mypy>=1.11.1", "ruff>=0.6.1", "debugpy"]
[build-system]
requires = ["setuptools>=73.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["langgraph_mcp"]
[tool.setuptools.package-dir]
"langgraph_mcp" = "src/langgraph_mcp"