forked from newAM/idasen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.28 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
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.poetry]
name = "idasen"
description = "ikea IDÅSEN desk API and CLI."
authors = ["Alex M. <[email protected]>"]
version = "0.8.1"
license = "MIT"
readme = "README.rst"
repository = "https://github.com/newAM/idasen"
homepage = "https://github.com/newAM/idasen"
keywords = ["ikea", "idasen", "bluetooth", "linak", "ble"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.8"
bleak = ">=0.12,<0.14"
pyyaml = ">=5.3.1,<7"
voluptuous = "^0.12"
[tool.poetry.dev-dependencies]
black = { version = "21.11b1", allow-prereleases = true }
coveralls = "^3"
flake8 = "^4.0.1"
flake8-bugbear = "^21.9.1"
pep8-naming = "^0.12.1"
pytest = "^6.2.5"
pytest-asyncio = ">=0.15.1,<0.17"
pytest-cov = "^3.0.0"
sphinx = "^4.3.0"
sphinx-rtd-theme = "^1.0.0"
toml = "^0.10.2"
mypy = "^0.910"
types-PyYAML = "^6.0.1"
[tool.poetry.scripts]
idasen = "idasen.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.core.masonry.api"