[tool.poetry]
name = "collaborator-auto-report-run"
version = "0.1.0"
description = ""
authors = ["Collaborators team <collaborators-team@sonymusic-pde.com>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.13"
datadog-lambda = "^6.105.0"
sqlalchemy = "^2.0.38"
boto3 = "^1.37.9"
pymysql = "^1.1.1"
marshmallow = "^3.26.1"


[tool.poetry.group.dev.dependencies]
ruff = "^0.12.4"
mypy = "^1.17.0"
pytest = ">=8.3.4,<10.0.0"
python-dotenv = "^1.0.1"
pytest-cov = "^6.0.0"
types-boto3 = { version = "^1.37.9", extras = ["sqs", "secretsmanager"] }

[tool.ruff]
line-length = 100

[tool.ruff.lint]
# Basic starter config from https://docs.astral.sh/ruff/linter/#rule-selection
select = [
    # pycodestyle
    "E",
    # Pyflakes
    "F",
    # pyupgrade
    "UP",
    # flake8-bugbear
    "B",
    # flake8-simplify
    "SIM",
    # isort
    "I",
]


[tool.mypy]
strict = true


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