pyproject.toml•575 B
[project]
name = "azure-assistant-mcp"
version = "0.1.0"
description = "Azure-Assistant-MCP: An MCP server that answers questions by generating and running Azure Resource Graph (ARG) queries."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.5.0",
"python-dotenv>=1.0.1",
"azure-identity>=1.20.0",
"azure-mgmt-resourcegraph>=8.0.0",
"azure-mgmt-subscription>=3.1.1",
"typing-extensions>=4.8.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
azure-assistant-mcp = "azure_assistant_mcp:main"