-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
37 lines (33 loc) · 1013 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
[tool.poetry]
name = "pyfreshintellivent"
version = "0.3.2"
description = "Manage Fresh Intellivent Sky bathroom ventilation fan"
authors = ["Ståle Storø Hauknes <[email protected]>"]
readme = "README.md"
repository = "https://github.com/LaStrada/pyfreshintellivent"
license = "Apache License 2.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["ble", "ventilation", "fresh", "intellivent", "sky"]
include = [
"characteristics.md", "README.md"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
bleak = ">=0.21.1"
bleak-retry-connector = ">=3.3.0,<3.4.0"
[tool.poetry.group.dev.dependencies]
black = ">=22.10.0"
flake8 = ">=4.0.0"
pytest = "^7.0.0"
pytest-asyncio = "^0.20.1"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"