-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "idasen"
description = "ikea IDÅSEN desk API and CLI."
authors = [{ name = "Alex Martens", email = "alex+idasen@thinglab.org" }]
version = "0.13.1"
license = "MIT"
readme = "README.rst"
keywords = ["ikea", "idasen", "bluetooth", "linak", "ble"]
requires-python = ">= 3.10"
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>=77"]
build-backend = "setuptools.build_meta"
[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",
"tomli;python_version<'3.11'",
"types-pyyaml>=6.0.12.20241230",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
[tool.mypy]
warn_unused_configs = true
ignore_missing_imports = true
[tool.ruff.lint]
extend-select = [
# flake8-builtins
"A",
# flake8-unused-arguments
"ARG",
# flake8-bugbear
"B",
# pep8-naming
"N",
# unused-noqa
"RUF100",
]