| [build-system] | |
| requires = ["setuptools>=68", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "iac-secfix-agents" | |
| version = "0.1.0" | |
| description = "Scanner-verified multi-agent IaC remediation system for the AMD hackathon submission." | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "pydantic>=2.7", | |
| "pydantic-ai-slim[openai]>=1.91.0", | |
| "openai>=1.40.0", | |
| "checkov>=3.2.0", | |
| "python-hcl2>=4.3.0", | |
| "PyYAML>=6.0.1", | |
| ] | |
| [project.scripts] | |
| iac-secfix-agents = "iac_secfix_agents.cli:main" | |
| [tool.setuptools.packages.find] | |
| where = ["src"] | |