-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (35 loc) · 1.07 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
[tool.poetry]
name = "vivintpy"
version = "0.0.0"
description = "Python library for interacting with a Vivint security and smart home system."
authors = ["Nathan Spencer <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/natekspencer/vivintpy"
repository = "https://github.com/natekspencer/vivintpy"
keywords = ["Vivint", "alarm system", "security", "smart home", "home automation", "asynchronous"]
[tool.poetry.dependencies]
python = "^3.9.0"
aiohttp = "^3.8.5"
certifi = ">=2022.9.24,<2025.0.0"
pubnub = ">=7,<9"
grpcio = "^1.51.1"
protobuf = ">=4.23.1,<6.0.0"
pyjwt = "^2.9.0"
[tool.poetry.group.dev.dependencies]
tox = ">=3.28,<5.0"
pytest = ">=7.2.2,<9.0.0"
pytest-asyncio = ">=0.21,<0.25"
pytest-cov = ">=4,<7"
pytest-timeout = "^2.1.0"
mypy = "^1.4"
grpcio-tools = ">=1.62.3,<2"
ruff = ">=0.5.0,<0.8"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
pattern = "default-unprefixed"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"