mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-04 19:21:51 +00:00
31 lines
526 B
TOML
31 lines
526 B
TOML
[build-system]
|
|
build-backend = "setuptools.build_meta"
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"bandit==1.8.3",
|
|
"pytest==9.0.3",
|
|
"vulture==2.14"
|
|
]
|
|
|
|
[project]
|
|
dependencies = [
|
|
"fastmcp==3.2.4",
|
|
"httpx==0.28.1"
|
|
]
|
|
description = "MCP server for Prowler ecosystem"
|
|
name = "prowler-mcp"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
version = "0.5.0"
|
|
|
|
[project.scripts]
|
|
prowler-mcp = "prowler_mcp_server.main:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.uv]
|
|
package = true
|