-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.32 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
[tool.poetry]
name = "hackem_yandex_dialogs"
version = "1.0.0"
description = "Навык для платформы Яндекс Диалоги, позволяющий общаться со спейсом с Яндекс Станции и других умных устройств Яндекса"
authors = ["rf0x3d <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = { extras = ["speedups"], version = "^3.8.3" }
charset-normalizer = ">=2.0,<3.0"
loguru = "^0.6.0"
uvloop = "^0.16.0"
aiodns = "^3.0.0"
toml = "^0.10.2"
orjson = "^3.8.6"
aioalice = { git = "https://github.com/rfoxxxy/aioalice" }
pydantic = "^2.3.0"
[tool.poetry.group.dev.dependencies]
pycodestyle = "^2.8.0"
isort = "^5.10.1"
pytest = "^7.2.0"
pytest-mock = "^3.10.0"
autoflake = "^2.0.0"
pylint = "^2.15.9"
pytest-asyncio = "^0.20.3"
black = "^23.9.1"
pytest-cov = "^4.1.0"
pre-commit = "^3.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = false
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
addopts = "-rsxX -l --tb=short"
xfail_strict = true
[tool.isort]
profile = "black"
known_first_party = "poetry"
[tool.black]
line-length = 79
target-version = ['py310']