-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
125 lines (115 loc) · 2.66 KB
/
pyproject.toml
File metadata and controls
125 lines (115 loc) · 2.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[project]
name = "mcp-agent"
version = "0.2.5"
description = "Build effective agents with Model Context Protocol (MCP) using simple, composable patterns."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Sarmad Qadri", email = "sarmad@lastmileai.dev" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.11.13",
"fastapi>=0.115.6",
"httpx>=0.28.1",
"jsonref>=1.1.0",
"mcp>=1.19.0",
"numpy>=2.1.3",
"opentelemetry-distro>=0.50b0",
"opentelemetry-exporter-otlp-proto-http>=1.29.0",
"opentelemetry-instrumentation-anthropic>=0.39.3",
"opentelemetry-instrumentation-openai>=0.39.3",
"prompt-toolkit>=3.0.50",
"pydantic-settings>=2.7.0",
"pydantic-yaml>=1.5.1",
"pydantic>=2.10.4",
"pyyaml>=6.0.2",
"rich>=13.9.4",
"scikit-learn>=1.6.0",
"typer>=0.15.3",
"websockets>=12.0",
"pathspec>=0.12.1",
"python-dotenv>=1.0.0",
"watchdog>=6.0.0",
]
[project.optional-dependencies]
temporal = [
"temporalio[opentelemetry]>=1.10.0",
]
anthropic = [
"anthropic>=0.48.0",
]
anthropic_bedrock = [
"anthropic[bedrock]>=0.52.0",
]
anthropic_vertex = [
"anthropic[vertex]>=0.52.0",
"google-cloud-aiplatform>=1.101.0",
]
bedrock = [
"boto3>=1.37.23"
]
openai = [
"openai>=1.58.1",
]
azure = [
"azure-ai-inference>=1.0.0b9",
"azure-identity>=1.22.0"
]
google = [
"google-genai>=1.10.0",
]
cohere = [
"cohere>=5.13.4",
]
langchain = [
"langchain-core>=0.3.64",
]
redis = [
"redis[hiredis]>=5.0.4",
]
crewai = [
"crewai>=0.126.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"pydantic>=2.10.4",
"pyyaml>=6.0.2",
"ruff>=0.8.4",
"tomli>=2.2.1",
"pytest>=7.4.0",
"pytest-asyncio>=0.21.1",
"boto3-stubs[bedrock-runtime]>=1.37.23",
"trio>=0.30.0",
"pytest-cov>=6.1.1",
"httpx>=0.28.1",
]
[project.scripts]
silsila = "mcp_agent.cli.main:run"
mcp-agent = "mcp_agent.cli.main_bootstrap:run"
mcp-cloud = "mcp_agent.cli.cloud.main:run"
mcpc = "mcp_agent.cli.cloud.main:run"
[tool.setuptools.packages.find]
include = ["mcp-agent"]
[tool.setuptools.package-data]
mcp_agent = [
"data/*.json",
"data/templates/**/*",
"data/examples/**/*",
"resources/examples/**/*.py",
"resources/examples/**/*.yaml",
"resources/examples/**/*.yml",
"resources/examples/**/*.csv",
"resources/examples/**/mount-point/*.csv",
]
[tool.pytest.ini_options]
pythonpath = ["."]