[project]
name = "connector-neo4j"
version = "1.0.4-rc0"
description = "Python neo4j connector."
authors = [{ name = "Sony Music PDEGO", email = "eng@sonymusic-pde.com" }]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
    "neo4j>=5.20.0,<6.0.0",
]
classifiers = [
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Framework :: Pytest",
]

[project.urls]
Homepage = "https://github.com/theorchard/python-connector-neo4j/"

[project.optional-dependencies]
flask = [
     "Flask>=1.0.0,<2.2.0",
    "werkzeug<3.0.0",
]

[dependency-groups]
dev = [
    "connector-neo4j[flask]",
    "pytest>=8.1.1",
    "pytest-cov>=4.1.0",
    "pytest-mock>=3.13.0",
    "ruff>=0.2.2",
    "bump2version~=1.0.1",
]

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

[tool.hatch.build]
include = ["connector_neo4j"]

[tool.ruff]
line-length = 88
