forked from EuleMitKeule/webhook-conversation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (40 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "webhook-conversation"
authors = [{ name = "Lennard Beers", email = "l.beers@outlook.de" }]
maintainers = [{ name = "Lennard Beers", email = "l.beers@outlook.de" }]
license = { file = "LICENSE.md" }
keywords = [
"homeassistant",
"integration",
"custom-component",
"conversation",
"voice-assistant",
"webhook",
"n8n",
"webhook-conversation",
"home-assistant",
"home-assistant-custom-component",
"home-assistant-integration",
"home-assistant-integration",
]
classifiers = [
"Intended Audience :: Users",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
description = "A custom component for Home Assistant to use webhooks for conversation and AI features."
readme = "README.md"
requires-python = ">=3.13.2"
version = "0.0.0"
dependencies = ["homeassistant>=2025.8.0"]
[project.urls]
Repository = "https://github.com/eulemitkeule/webhook-conversation"
Documentation = "https://github.com/eulemitkeule/webhook-conversation/blob/master/README.md"
Changelog = "https://github.com/EuleMitKeule/webhook-conversation/releases"
Issues = "https://github.com/eulemitkeule/webhook-conversation/issues"
[dependency-groups]
dev = ["mypy>=1.17.1", "ruff>=0.12.9"]
[[tool.mypy.overrides]]
module = ["voluptuous_openapi.*"]
follow_untyped_imports = true