[project]
name = "ows-dead-endpoints"
version = "0.1.0"
description = "Analysis tools for identifying dead OWS API endpoints"
readme = "../README.md"
authors = [
    {name = "Raed Atoui", email = "ratoui@sonymusic-pde.com"}
]
requires-python = ">=3.13"
dependencies = [
    "httpx>=0.27",
    "python-dotenv>=1.0",
]

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