-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.11 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
[tool.poetry]
name = "hikvision-isapi-cli"
version = "1.2.1"
description = "A client library for accessing Hikvision ISAPI and more"
authors = ["mmascia"]
readme = "README.md"
packages = [
{include = "hikvision_isapi_cli"},
{include = "hikvision_isapi_sk"},
]
include = ["CHANGELOG.md", "hikvision_isapi_cli/py.typed", "docs"]
[tool.poetry.dependencies]
python = "^3.11"
httpx = "==0.24.1"
python-dateutil = "==2.8.2"
xmltodict = "=0.13.0"
pytest-asyncio = "==0.20.3"
pytest-aiohttp = "==1.0.4"
pytest-cov = "==3.0.0"
pytest-freezer = "==0.4.6"
pytest-socket = "==0.5.1"
pytest-test-groups = "==1.0.3"
pytest-sugar = "==0.9.6"
pytest-timeout = "==2.1.0"
pytest-unordered = "==0.5.2"
pytest-picked = "==0.4.6"
pytest-xdist = "==3.2.1"
pytest = "==7.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target_version = ['py310', 'py311']
exclude = '''
(
/(
| \.git
| \.venv
| \.mypy_cache
| \.history
)/
)
'''
[tool.isort]
line_length = 120
profile = "black"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]