-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (37 loc) · 1015 Bytes
/
pyproject.toml
File metadata and controls
39 lines (37 loc) · 1015 Bytes
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
[project]
name = "python-mcp-demos"
version = "0.1.0"
description = "Demonstration of Python FastMCP servers"
readme = "README.md"
requires-python = "==3.13.*"
dependencies = [
"fastmcp>=3.0.0b1",
"debugpy>=1.8.0",
"langchain-core>=0.3.0",
"mcp>=1.3.0",
"azure-identity>=1.25.1",
"msgraph-sdk>=1.0.0",
"dotenv-azd>=0.1.0",
"langchain==1.0.0a5",
"langchain-openai>=1.0.1",
"langchain-mcp-adapters>=0.1.11",
"azure-ai-agents>=1.1.0",
"agent-framework>=1.0.0b251016",
"azure-cosmos>=4.9.0",
"azure-monitor-opentelemetry>=1.8.3",
"opentelemetry-instrumentation-starlette>=0.60b0",
"opentelemetry-exporter-otlp-proto-grpc>=1.39.0",
"logfire>=4.15.1",
"azure-core-tracing-opentelemetry>=1.0.0b12"
]
[dependency-groups]
dev = [
"ruff>=0.8.0",
"pre-commit>=4.0.0",
]
[tool.ruff]
line-length = 120
target-version = "py310"
lint.select = ["E", "F", "I", "UP"]
lint.ignore = ["D203"]
lint.isort.known-first-party = ["opentelemetry_middleware"]