forked from newAM/idasen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.04 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
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.poetry]
name = "idasen"
description = "ikea IDÅSEN desk API and CLI."
authors = ["Alex Martens <alex@thinglab.org>"]
version = "0.9.5"
license = "MIT"
readme = "README.rst"
repository = "https://github.com/newAM/idasen"
documentation = "https://newam.github.io/idasen"
keywords = ["ikea", "idasen", "bluetooth", "linak", "ble"]
[tool.poetry.dependencies]
python = "^3.8"
bleak = ">=0.15,<0.20"
pyyaml = ">=5.3.1,<7"
voluptuous = ">=0.12,<0.14"
[tool.poetry.dev-dependencies]
black = "23.1.0"
coveralls = "^3"
flake8 = "^5.0.4"
flake8-bugbear = "^23.2.13"
pep8-naming = "^0.13.3"
pytest = "^7.2.1"
pytest-asyncio = "^0.20"
pytest-cov = "^4.0.0"
sphinx = "^6.1.3"
sphinx-rtd-theme = "^1.2.0"
toml = "^0.10.2"
mypy = "^1.1"
types-PyYAML = "^6.0.12"
[tool.poetry.scripts]
idasen = "idasen.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.mypy]
warn_unused_configs = true
ignore_missing_imports = true