[project]
name = "auth0-identity-analysis"
version = "0.1.0"
description = "Tools for analyzing Auth0 and Neo4j identity data"
readme = "README.md"
authors = [
    {name = "Raed Atoui", email = "ratoui@sonymusic-pde.com"}
]
requires-python = ">=3.13"
dependencies = [
    "neo4j>=5.14.0",
    "python-dotenv>=1.0.0",
    "pandas>=2.0.0",
    "requests>=2.32.5",
    "sqlalchemy>=2.0.0",
    "pymysql>=1.1.0",
]

[project.optional-dependencies]
dev = [
    "ruff>=0.1.14",
    "mypy>=1.8.0",
    "vulture",
    "types-requests>=2.31.0",
]

[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
