-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
75 lines (67 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "aiohomekit"
version = "3.2.6"
description = "An asyncio HomeKit client"
authors = ["John Carr <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/Jc2k/aiohomekit"
repository = "https://github.com/Jc2k/aiohomekit"
keywords = ["HomeKit", "home", "automation"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Topic :: Home Automation",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
include = ["aiohomekit/py.typed"]
[tool.poetry.dependencies]
python = "^3.10"
cryptography = ">=2.9.2"
zeroconf = ">=0.132.2"
commentjson = "^0.9.0"
aiocoap = ">=0.4.5"
bleak = ">=0.19.0"
chacha20poly1305-reuseable = ">=0.12.1"
bleak-retry-connector = ">=2.9.0"
orjson = ">=3.7.8"
async-timeout = {version = ">=4.0.2", python = "<3.11"}
chacha20poly1305 = "^0.0.3"
async-interrupt = ">=1.1.1"
aiohappyeyeballs = ">=2.3.0"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
mypy = "^0.931"
black = "^24.3.0"
flake8 = "^4.0.1"
pytest = "^7.2.0"
coverage = "^6.3"
pylint = "^2.12.2"
pytest-aiohttp = "^1.0.3"
pyupgrade = "^2.31.0"
pytest-cov = "^3.0.0"
asynctest = "^0.13.0"
aiohttp = ">=3.8.3"
[tool.black]
target-version = ["py39", "py310"]
[tool.poetry.scripts]
aiohomekitctl = "aiohomekit.__main__:sync_main"
[tool.pytest.ini_options]
minversion = "6.0"
asyncio_mode = "auto"
[tool.coverage.run]
omit = ["tests/*"]
[tool.isort]
profile = "black"
indent = " "
force_sort_within_sections = "true"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
known_first_party = "aiohomekit,tests"
forced_separate = "tests"
combine_as_imports = "true"
extra_standard_library = "_socket"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"