[project]
name = "scripts"
version = "0.1.0"
description = "Bulk operation scripts for the Orchard platform"
authors = [
    {name = "Raed Atoui", email = "ratoui@sonymusic-pde.com"}
]
requires-python = ">=3.13"
dependencies = [
    "httpx>=0.27.0",
    "requests>=2.32.0",
    "marshmallow>=3.22.0",
    "pymysql>=1.1.2",
    "python-dotenv>=1.2.2",
    "playwright>=1.58.0",
    "connector-neo4j",
]

[project.optional-dependencies]
dev = [
    "ruff>=0.1.14",
    "mypy>=1.8.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

[tool.uv.sources]
connector-neo4j = { url = "https://pypi.theorchard.io/api/package/connector-neo4j/connector_neo4j-1.0.0-py3-none-any.whl" }
