-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
54 lines (45 loc) · 1.25 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
53
54
[tool.poetry]
name = "aiobafi6"
version = "0.9.0"
description = "Big Ass Fans i6/Haiku protocol asynchronous Python library"
authors = ["Jean-Francois Roy <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/jfroy/aiobafi6"
repository = "https://github.com/jfroy/aiobafi6"
keywords = ["BigAssFans", "i6", "Haiku", "SenseME"]
classifiers = [
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Topic :: Home Automation",
]
[tool.poetry.dependencies]
python = ">=3.10.0"
protobuf = ">=3.20"
zeroconf = ">=0.38"
[tool.poetry.dev-dependencies]
black = "^23.9.1"
isort = "^5.12.0"
poethepoet = "^0.22.1"
pytest = "^7.4.2"
pytest-asyncio = "^0.21"
flake8 = "^6.1.0"
pylint = "^2.17.5"
[tool.poetry.scripts]
aiobafi6 = 'aiobafi6.cmd.main:main'
[tool.poe.tasks.protoc]
cmd = "protoc --python_out=aiobafi6 --pyi_out=aiobafi6 proto/aiobafi6.proto"
help = "Generate Python protobuf files"
[tool.isort]
profile = "black"
src_paths = ["aiobafi6"]
skip_glob = ["aiobafi6/proto/*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.pylint.main]
py-version = "3.9"
[tool.pylint."messages control"]
disable = ["too-many-instance-attributes"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"