Files
hass-oidc-auth/pyproject.toml
Christiaan Goossens 19cbc6e3ad Fix dependencies to the minor versions (#125)
* Fix dependencies to the minor versions

* Specify exact Python version requirement

* Updated lockfile

* Switch to dependency groups
2025-09-22 12:51:13 +02:00

37 lines
694 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 = [
"python-jose~=3.5.0",
"aiofiles~=24.1",
"jinja2~=3.1",
"bcrypt~=4.2",
]
readme = "README.md"
requires-python = "~=3.13.7"
[dependency-groups]
dev = [
"homeassistant~=2025.8",
"pylint~=3.3",
"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"]