forked from iMicknl/python-overkiz-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1015 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
38
39
40
41
[tool.poetry]
name = "pyoverkiz"
version = "1.12.1"
description = "Async Python client to interact with internal OverKiz API (e.g. used by Somfy TaHoma)."
authors = ["Mick Vleeshouwer", "Vincent Le Bourlot", "Thibaut Etienne"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/iMicknl/python-overkiz-api"
repository = "https://github.com/iMicknl/python-overkiz-api"
packages = [
{ include = "pyoverkiz" }
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
aiohttp = "^3.6.1"
pyhumps = "^3.0.2,!=3.7.3"
backoff = ">=1.10.0,<3.0"
attrs = ">=21.2,<24.0"
boto3 = "^1.18.59"
warrant-lite = "^1.0.4"
backports-strenum = "^1.2.4"
[tool.poetry.dev-dependencies]
tox = "^4.11"
pytest = "^7.4"
pytest-cov = "^4.1.0"
pre-commit = "^3.5"
black = {version = "^23.10", allow-prereleases = true}
pylint = "^3.0.2"
isort = "^5.11.5"
mypy = "^1.6"
flake8 = "^5.0.4"
pyupgrade = "^3.3.2"
pytest-asyncio = "^0.21.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"