-
Notifications
You must be signed in to change notification settings - Fork 563
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.37 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "macae-mcp-server"
description = "FastMCP-based Model Context Protocol (MCP) server for the MACAE solution accelerator"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Microsoft MACAE Team" }
]
dynamic = ["version"]
# Core runtime dependencies (kept in sync with requirements.txt)
dependencies = [
"fastmcp==2.14.0",
"uvicorn[standard]==0.38.0",
"python-dotenv==1.1.1",
"azure-identity==1.19.0",
"pydantic==2.11.7",
"pydantic-settings==2.6.1",
"python-multipart==0.0.22",
"httpx==0.28.1",
"werkzeug==3.1.6",
"urllib3==2.6.3",
"azure-core==1.38.0",
"cryptography==46.0.5",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.4",
"pytest-asyncio==0.24.0",
]
[project.urls]
Homepage = "https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator"
Repository = "https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator"
# Version is sourced from the package __init__.py
[tool.hatch.version]
path = "__init__.py"
# Hatch build configuration. Since this folder is itself the package root,
# include everything under it (no src/ layout).
[tool.hatch.build.targets.wheel]
packages = ["."]
include = ["**/*", "README.md"]
[project.scripts]
mcp-server = "mcp_server:main"