[project]
name = "cypher-runner"
version = "0.0.1"
description = "A Neo4j query runner with file-based query support"
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"
]

[project.optional-dependencies]
dev = [
    "ruff>=0.1.14",
    "mypy>=1.8.0",
    "pydantic>=1.9.0"
]

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

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

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