-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1.1 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 = "bosch-alarm-mode2"
license = "MIT"
description = "An async Python library for interacting with Bosch Alarm Panels supporting the 'Mode 2' API."
readme = "README.md"
authors = [{ name = "Michael Grigoriev", email = "mag@luminal.org" }]
requires-python = ">= 3.11"
classifiers = [
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"Topic :: Home Automation",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/mag1024/bosch-alarm-mode2"
Repository = "https://github.com/mag1024/bosch-alarm-mode2.git"
Issues = "https://github.com/mag1024/bosch-alarm-mode2/issues"
[build-system]
requires = ["hatchling>=1.27.0", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.9.7",
]
[tool.uv]
trusted-publishing = "always"
[tool.hatch.version]
source = "vcs"
raw-options = { local_scheme = "no-local-version" }
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = ["F403", "F405", "E722"]