[tool.poetry]
name = "cross-account-secret-sync"
version = "0.1.0"
description = ""
authors = ["Timur Shagapov <timur.shagapov.sme@sonymusic-pde.com>"]
readme = "README.md"
packages = [{include = "cross_account_secret_sync"}]

[tool.poetry.dependencies]
python = "^3.10"
boto3 = "^1.28.16"
awslambdaric = "^2.0.4"
slack_sdk = "^3.21.3"

[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pylint = "^2.17.4"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
mypy = "^1.4.1"
pytest-mock = "^3.11.1"
pytest-dotenv = "^0.5.2"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.pylint]
disable = [
    "missing-module-docstring",
    "missing-class-docstring",
    "redefined-outer-name",
]

[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'

[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true

[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
env_files = ".env"
