-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.09 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
44
45
46
47
48
49
50
51
[project]
name = "qr_generator"
version = "2.1.19"
description = "This integration allows to create QR Codes with static or dynamic content."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "DeerMaximum", email = "git983456@parabelmail.de" },
]
maintainers = [
{ name = "DeerMaximum", email = "git983456@parabelmail.de" },
]
requires-python = ">=3.13.2"
keywords = [
"homeassistant",
"qr",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pyqrcode==1.2.1",
"pypng==0.20220715.0"
]
[project.urls]
homepage = "https://github.com/DeerMaximum/QR-Code-Generator"
repository = "https://github.com/DeerMaximum/QR-Code-Generator"
[dependency-groups]
dev = [
"aiohttp_cors",
"homeassistant==2026.2.0b1",
"pytest-homeassistant-custom-component"
]
lint = [
"ruff>=0.12.0"
]
[tool.ruff]
preview = true
[tool.ruff.lint.isort]
case-sensitive = true
[tool.uv]
default-groups = "all"