Files
hass-oidc-auth/pyproject.toml
renovate[bot] 36d3255b0b fix(deps): update dependency joserfc to ~=1.5.0 (#166)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-30 12:06:06 +01:00

46 lines
945 B
TOML

[project]
name = "hass-oidc-auth"
version = "0.7.0"
description = "OIDC component for Home Assistant"
authors = [
{ name = "Christiaan Goossens", email = "contact@christiaangoossens.nl" }
]
license = "MIT"
dependencies = [
"aiofiles~=25.1",
"jinja2~=3.1",
"bcrypt~=4.2",
"joserfc~=1.5.0",
]
readme = "README.md"
requires-python = "~=3.13.7"
[dependency-groups]
dev = [
"homeassistant~=2025.10",
"pylint~=4.0",
"pytest~=8.4.2",
"pytest-asyncio~=1.2.0",
"pytest-cov~=7.0.0",
"pytest-homeassistant-custom-component~=0.13.286",
"ruff~=0.12",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
managed = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["custom_components/auth_oidc"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--cov=custom_components --cov-fail-under=0"
log_level = "DEBUG"