-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
74 lines (55 loc) · 1.42 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 = "hikconnect"
version = "1.2.1"
description = "Communicate with Hikvision smart doorbells via Hik-Connect cloud."
license = "MIT"
authors = ["Tomas Bedrich <[email protected]>"]
readme = "README.md"
homepage = "https://pypi.org/project/hikconnect"
documentation = "https://hikconnect.readthedocs.io"
repository = "https://github.com/tomasbedrich/hikconnect"
keywords = [
]
classifiers = [
"Development Status :: 1 - Planning",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
"Topic :: System :: Hardware",
"Topic :: Home Automation",
]
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.8.5"
[tool.poetry.dev-dependencies]
python-dotenv = "^1.0.0"
# Formatters
black = "^24.3.0"
isort = "^5.12.0"
# Linters
mypy = "^1.5.1"
pydocstyle = "^6.3.0"
pylint = "^2.17.5"
# Testing
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-describe = "^2.1.0"
pytest-expecter = "^3.0"
pytest-random = "^0.02"
pytest-asyncio = "^0.14.0"
pytest-dotenv = "^0.5.2"
aioresponses = "^0.7.4"
# Reports
coveragespace = "^6.0.2"
# Documentation
mkdocs = "^1.5.2"
mkdocs-material = "^9.2.5"
mkdocstrings = "^0.22.0"
pygments = "^2.16.1"
[tool.black]
target-version = ["py36", "py37", "py38"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"