Amit Arora 292462b94c Add SRE Agent use case implementation
- Copy SRE Agent codebase to 02-use-cases/04-SRE-agent
- Update LICENSE link to reference main repository LICENSE
- Configure .gitignore to exclude wheel files from version control
2025-07-14 22:46:32 +00:00

79 lines
2.0 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sre-agent"
version = "1.0.0"
description = "Multi-agent SRE assistant for infrastructure troubleshooting"
authors = [{name = "SRE Team", email = "sre@company.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"langgraph>=0.2.39",
"langchain-core>=0.3.15",
"langchain-aws>=0.2.6",
"langchain-anthropic>=0.2.4",
"langchain-mcp-adapters>=0.1.0",
"pydantic>=2.0.0",
"uvloop>=0.20.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pyyaml>=6.0.1",
"httpx>=0.25.0",
"click>=8.1.0",
"mcp>=1.10.1",
"requests>=2.28.0",
"python-dotenv>=1.0.0",
"anthropic>=0.57.1",
"python-multipart>=0.0.6",
"boto3 @ file:///home/ubuntu/repos/sre-agent/gateway/boto3-1.39.3-py3-none-any.whl",
"botocore @ file:///home/ubuntu/repos/sre-agent/gateway/botocore-1.39.3-py3-none-any.whl",
"awscli @ file:///home/ubuntu/repos/sre-agent/gateway/awscli-1.41.3-py3-none-any.whl",
"amzn-AWSAgentCredentialProviderServiceBotocoreClient @ file:///home/ubuntu/repos/sre-agent/gateway/amzn_AWSAgentCredentialProviderServiceBotocoreClient-1.0-py3-none-any.whl"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.5.0",
"flake8>=6.0.0",
"bandit>=1.7.0",
"pre-commit>=3.0.0",
"ruff>=0.1.0"
]
[project.scripts]
sre-agent = "sre_agent.cli:main"
sre-gateway-setup = "gateway.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["sre_agent*", "gateway*", "backend*"]
[tool.black]
line-length = 88
target-version = ['py312']
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"