[project]
name = "ebs-cloudwatch-metrics-mcp"
version = "0.1.0"
description = "AWS EBS CloudWatch 지표 계산 MCP 서버"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.0.0",
"boto3>=1.34.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"hypothesis>=6.0.0",
"moto[cloudwatch]>=5.0.0",
]
[project.scripts]
ebs-cloudwatch-metrics = "ebs_cloudwatch_metrics.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ebs_cloudwatch_metrics"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]