-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.24 KB
/
pyproject.toml
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
52
53
54
55
[project]
name = "idasen"
description = "ikea IDÅSEN desk API and CLI."
authors = [{ name = "Alex Martens", email = "alex+idasen@thinglab.org" }]
version = "0.12.0"
license.file = "LICENSE"
readme = "README.rst"
keywords = ["ikea", "idasen", "bluetooth", "linak", "ble"]
requires-python = ">= 3.9"
dependencies = [
"bleak>=0.15",
"pyyaml>=5.3.1",
"voluptuous>=0.12",
]
[project.urls]
Repository = "https://github.com/newAM/idasen"
Documentation = "https://newam.github.io/idasen"
Changelog = "https://github.com/newAM/idasen/blob/main/CHANGELOG.md"
Issues = "https://github.com/newAM/idasen/issues"
[project.scripts]
idasen = "idasen.cli:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["idasen"]
[dependency-groups]
dev = [
"coveralls>=4.0.1",
"mypy>=1.14.1",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.2",
"pytest-cov>=6.0.0",
"ruff>=0.9.1",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
"toml>=0.10.2",
"types-pyyaml>=6.0.12.20241230",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.mypy]
warn_unused_configs = true
ignore_missing_imports = true
[tool.ruff.lint]
# Add flake8-bugbear and pep8-naming rules
extend-select = ["B", "N"]