Files
prowler/pyproject.toml
dependabot[bot] 4dc5a3a67c build(deps): bump botocore from 1.29.125 to 1.29.134 (#2357)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-05-16 07:51:19 +02:00

90 lines
2.4 KiB
TOML

[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
# https://peps.python.org/pep-0621/
[tool.poetry]
authors = ["Toni de la Fuente <toni@blyx.com>"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License"
]
description = "Prowler is an Open Source security tool to perform Cloud Security best practices assessments, audits, incident response, continuous monitoring, hardening and forensics readiness. It contains more than 240 controls covering CIS, PCI-DSS, ISO27001, GDPR, HIPAA, FFIEC, SOC2, AWS FTR, ENS and custom security frameworks."
license = "Apache-2.0"
maintainers = [
"Sergio Garcia <sergio@verica.io>",
"Nacho Rivera <nacho@verica.io>",
"Pepe Fagoaga <pepe@verica.io>"
]
name = "prowler"
packages = [
{include = "prowler"}
]
readme = "README.md"
version = "3.5.0"
[tool.poetry.dependencies]
alive-progress = "3.1.1"
arnparse = "0.0.2"
azure-identity = "1.12.0"
azure-mgmt-authorization = "3.0.0"
azure-mgmt-security = "5.0.0"
azure-mgmt-storage = "21.0.0"
azure-mgmt-subscription = "3.1.1"
azure-storage-blob = "12.16.0"
boto3 = "1.26.125"
botocore = "1.29.134"
colorama = "0.4.6"
detect-secrets = "1.4.0"
google-api-python-client = "2.86.0"
mkdocs = {version = "1.4.3", optional = true}
mkdocs-material = {version = "9.1.8", optional = true}
msgraph-core = "0.2.2"
pydantic = "1.10.7"
python = "^3.9"
schema = "0.7.5"
shodan = "1.29.0"
slack-sdk = "3.21.3"
tabulate = "0.9.0"
[tool.poetry.extras]
docs = ["mkdocs", "mkdocs-material"]
[tool.poetry.group.dev.dependencies]
bandit = "1.7.5"
black = "22.12.0"
coverage = "7.2.5"
docker = "6.1.1"
flake8 = "6.0.0"
freezegun = "1.2.2"
moto = "4.1.9"
openapi-spec-validator = "0.5.6"
pylint = "2.17.4"
pytest = "7.3.1"
pytest-xdist = "3.2.1"
safety = "2.3.5"
sure = "2.0.1"
vulture = "2.7"
[tool.poetry.scripts]
prowler = "prowler.__main__:prowler"
[tool.poetry.urls]
"Changelog" = "https://github.com/prowler-cloud/prowler/releases"
"Documentation" = "https://docs.prowler.cloud"
"Homepage" = "https://github.com/prowler-cloud/prowler"
"Issue tracker" = "https://github.com/prowler-cloud/prowler/issues"
[tool.poetry-version-plugin]
source = "init"
[tool.poetry_bumpversion.file."prowler/config/config.py"]
replace = 'prowler_version = "{new_version}"'
search = 'prowler_version = "{current_version}"'
[tool.pytest.ini_options]
pythonpath = [
"."
]