forked from microsoft-foundry/mcp-foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 741 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (27 loc) · 741 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
[project]
name = "mcp-foundry"
version = "0.1.0"
description = "MCP Server for Azure AI Foundry (experimental)"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.8.0",
"requests>=2.32.3",
"azure-mgmt-cognitiveservices>=13.0.0",
"azure-identity>=1.0",
"jinja2~=3.0",
"azure-search-documents>=11.5.2",
"azure-cli>=2.60.0",
"azure-ai-evaluation>=1.9.0",
"azure-ai-projects>=1.0.0b11"
]
[dependency-groups]
test = [
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function" # or "module", "session" based on my use case
pythonpath = ["src"]
[project.scripts]
run-azure-ai-foundry-mcp = "mcp_foundry.__main__:main"