forked from iMicknl/python-overkiz-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 970 Bytes
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
[tool.poetry]
name = "pyoverkiz"
version = "1.3.5"
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.7,<4.0"
aiohttp = "^3.6.1"
pyhumps = "^3.0.2"
backoff = "^1.10.0"
attrs = "^21.2.0"
boto3 = "^1.18.59"
warrant-lite = "^1.0.4"
[tool.poetry.dev-dependencies]
tox = "^3.24"
pytest = "^7.0"
pytest-cov = "^3.0.0"
pre-commit = "^2.17"
black = {version = "^22.1", allow-prereleases = true}
pylint = "^2.12.2"
isort = "^5.10.1"
mypy = "^0.931"
flake8 = "^4.0.1"
pyupgrade = "^2.30.0"
pytest-asyncio = "^0.18.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"