[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aws-pillar-mcp-server"
version = "0.1.0"
description = "MCP server for AWS FinOps operations - cleanup, capacity, cost optimization, and performance monitoring"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "AWS FinOps Team" }
]
keywords = ["mcp", "aws", "finops", "cost-optimization", "cloud-management"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=1.0.0",
"boto3>=1.35.0",
"botocore>=1.35.0",
"bedrock-agentcore-starter-toolkit>=0.2.8",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.3.0",
]
[project.scripts]
aws-finops-mcp = "aws_finops_mcp.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "F", "I", "N", "W", "UP"]