[project]
name = "users-cleanup"
version = "0.1.0"
description = "Tools to remove auth0 users and deactivate identities"
readme = "README.md"
authors = [
    {name = "Igor Panteleyev", email = "igor.panteleyev.sme@sonymusic-pde.com"}
]
requires-python = ">=3.13"
dependencies = [
    "neo4j~=6.0.3",
    "python-dotenv~=1.0.0",
    "requests~=2.32.5",
    "auth0-python~=4.13.0",
    "backoff>=2.2.1",
    "mypy>=1.19.0",
]

[project.optional-dependencies]
dev = [
    "ruff~=0.1.14",
    "mypy~=1.19.0",
    "vulture"
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src"]

[tool.mypy]
python_version = "3.13"
strict = true
ignore_missing_imports = true
warn_return_any = true
warn_unused_configs = true
