-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (45 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "api_client"
version = "0.1.2"
description = ""
authors = ["Alex Pirogov <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
pydantic = "^2.8.0"
aiohttp = "^3.9.5"
[tool.poetry.group.dev.dependencies]
flake8-pyproject = "^1.2.3"
isort = "^5.13.2"
black = "^24.2.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-mock = "^3.14.0"
pytest-asyncio = "^0.23.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 99
select = ["C", "E", "F", "W", "B", "B950"]
ignore = ["W503", "E704", "F541"]
exclude = [".git", ".venv", "*__pycache__*"]
count = true
[tool.black]
target-version = ["py312"]
line-length = 99
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 80
known_first_party = ["api_client"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "debug"
asyncio_mode = "auto"
filterwarnings = [
"ignore:.*:pydantic.PydanticDeprecatedSince20",
"ignore:.*:DeprecationWarning",
]
markers = []
addopts = []