File: pyproject.toml

package info (click to toggle)
python-gardena-bluetooth 1.4.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: python: 594; makefile: 5
file content (31 lines) | stat: -rw-r--r-- 795 bytes parent folder | download
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
[tool.poetry]
name = "gardena-bluetooth"
version = "1.4.3"
description = ""
authors = ["Joakim Plate <elupus@ecce.se>"]
readme = "README.rst"
packages = [
    {include = "gardena_bluetooth"},
    {include = "gardena_bluetooth/py.typed"},
]

[tool.poetry.dependencies]
python = "^3.10"
bleak = ">=0.20.2"
bleak-retry-connector = ">=3.0.2"
asyncclick = {version = "^8.1.3.4", optional = true}
tzlocal = "^5.0.1"
pytest-asyncio = {version = "^0.21.0", optional = true}
black = {version = "^23.3.0", optional = true}
ruff = {version = "^0.0.272", optional = true}

[tool.poetry.extras]
cli = ["asyncclick"]
test = ["asyncclick", "pytest-asyncio", "black", "ruff"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.pytest.init_options]
asyncio_mode = "auto"