[tool.poetry]
name = "collaborator-payoneer-status-sync"
version = "0.1.0"
description = "One-off DP payment status backfill using Payoneer payout status endpoint"
authors = ["Collaborators team <collaborators-team@sonymusic-pde.com>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.13"
boto3 = "^1.37.9"
pymysql = "^1.1.1"
pydantic = "^2.11.7"

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

[tool.ruff]
line-length = 100

[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]

[tool.mypy]
strict = true

[tool.pytest.ini_options]
pythonpath = ["."]

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