-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
74 lines (61 loc) · 1.57 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
[tool.poetry]
name = "pyadtpulse"
version = "1.2.9"
description = "Python interface for ADT Pulse security systems"
authors = ["Ryan Snodgrass"]
maintainers = ["Robert Lippmann"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/rlippmann/pyadtpulse"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = ">=3.8.5, < 4.0"
uvloop = "^0.19.0"
typeguard = "^4.1.5"
yarl = ">=1.9, < 2.0"
lxml = "^5.1.0"
aiohttp-zlib-ng = ">=0.1.1"
[tool.poetry.urls]
"Changelog" = "https://github.com/rlippmann/pyadtpulse/blob/master/CHANGELOG.md"
"Issues" = "https://github.com/rlippmann/pyadtpulse/issues"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
pytest-mock = "^3.12.0"
pytest-aiohttp = "^1.0.5"
pytest-timeout = "^2.2.0"
aioresponses = "^0.7.6"
freezegun = "^1.2.2"
pytest-coverage = "^0.0"
pytest-xdist = "^3.5.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
ruff = "^0.1.4"
pycln = "^2.3.0"
pyupgrade = "^3.15.0"
isort = "^5.12.0"
black = "^23.10.1"
mypy = "^1.6.1"
pylint = "^3.0.2"
refurb = "^1.22.1"
types-lxml = "^2024.2.9"
[build-system]
requires = ["poetry-core"]
build-backend = ["poetry.core.masonry.api"]
[tool.isort]
profile = "black"
force_to_top = [ "logging" ]
balanced_wrapping = true
[black]
line-length = 90
[tool.pycln]
all = true
[tool.pytest.ini_options]
timeout = 30
# addopts = "--cov=pyadtpulse --cov-report=html"
[tool.pyright]