-
Notifications
You must be signed in to change notification settings - Fork 289
/
Copy pathpyproject.toml
90 lines (83 loc) · 2.04 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
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
[project]
name = "mcp-agent"
version = "0.0.14"
description = "Build effective agents with Model Context Protocol (MCP) using simple, composable patterns."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Sarmad Qadri", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.6",
"instructor>=1.7.7",
"mcp>=1.6.0",
"opentelemetry-distro>=0.50b0",
"opentelemetry-exporter-otlp-proto-http>=1.29.0",
"pydantic-settings>=2.7.0",
"pydantic>=2.10.4",
"pyyaml>=6.0.2",
"rich>=13.9.4",
"typer>=0.15.1",
"numpy>=2.1.3",
"scikit-learn>=1.6.0",
"prompt-toolkit>=3.0.50",
"aiohttp>=3.11.13",
]
[project.optional-dependencies]
temporal = [
"temporalio>=1.8.0",
]
anthropic = [
"anthropic>=0.48.0",
"instructor[anthropic]>=1.7.2",
]
bedrock = [
"boto3>=1.37.23"
]
openai = [
"openai>=1.58.1",
]
azure = [
"azure-ai-inference>=1.0.0b9",
]
cohere = [
"cohere>=5.13.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"anthropic>=0.42.0",
"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",
]
[project.scripts]
mcp-agent = "mcp_agent.cli.__main__:app"
mcp_agent = "mcp_agent.cli.__main__:app"
mcpagent = "mcp_agent.cli.__main__:app"
silsila = "mcp_agent.cli.__main__:app"
prompt-server = "mcp_agent.mcp.prompts.__main__:main"
[tool.setuptools.packages.find]
include = ["mcp-agent"]
[tool.setuptools.package-data]
mcp-agent = [ # TODO: should this be mcp_agent?
"data/*.json",
"resources/examples/**/*.py",
"resources/examples/**/*.yaml",
"resources/examples/**/*.yml",
"resources/examples/**/*.csv",
"resources/examples/**/mount-point/*.csv"
]