forked from newAM/idasen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 946 Bytes
/
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
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.poetry]
name = "idasen"
description = "ikea IDÅSEN desk API and CLI."
authors = ["Alex Martens <[email protected]>"]
version = "0.8.3"
license = "MIT"
readme = "README.rst"
repository = "https://github.com/newAM/idasen"
homepage = "https://github.com/newAM/idasen"
keywords = ["ikea", "idasen", "bluetooth", "linak", "ble"]
[tool.poetry.dependencies]
python = "^3.8"
bleak = ">=0.12,<0.15"
pyyaml = ">=5.3.1,<7"
voluptuous = ">=0.12,<0.14"
[tool.poetry.dev-dependencies]
black = "22.3.0"
coveralls = "^3"
flake8 = "^4.0.1"
flake8-bugbear = "^22.4.25"
pep8-naming = "^0.13.0"
pytest = "^7.1.2"
pytest-asyncio = "^0.18"
pytest-cov = "^3.0.0"
sphinx = "^5.0.1"
sphinx-rtd-theme = "^1.0.0"
toml = "^0.10.2"
mypy = "^0.961"
types-PyYAML = "^6.0.8"
[tool.poetry.scripts]
idasen = "idasen.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.core.masonry.api"