pyproject.toml•1.53 kB
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aws-security-mcp"
version = "0.1.0"
description = "AWS Security MCP - A comprehensive AWS security inspection and remediation tool"
readme = "README.md"
authors = [
{name = "AWS Security MCP Team"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: System :: Systems Administration",
]
requires-python = ">=3.11"
dependencies = [
"boto3>=1.28.0",
"fastapi>=0.100.0",
"uvicorn>=0.22.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.24.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.3.1",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.3.0",
"isort>=5.12.0",
"mypy>=1.3.0",
"types-boto3>=1.0.2",
]
[project.scripts]
aws-security-mcp = "aws_security_mcp.main:run_app"
[tool.setuptools]
packages = ["aws_security_mcp"]
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"