-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
80 lines (70 loc) · 1.58 KB
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
75
76
77
78
79
80
[tool.poetry]
name = "avito-py"
version = "1.0.2"
description = "SDK для разработки инструментов на базе Avito API"
authors = ["Nikolay Baryshnikov <root@k0d.ru>"]
packages=[
{ include = "avito" },
]
license="MIT"
readme="README.md"
homepage="https://github.com/p141592/avito"
repository="https://github.com/p141592/avito"
keywords=["avito", "sdk", "python", "api"]
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: Russian",
"Natural Language :: English",
"Programming Language :: Python :: 3.14",
]
[tool.poetry.dependencies]
python = "^3.14"
httpx = "^0.28.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
coverage = "^7.10.6"
mypy = "^1.18.2"
ruff = "^0.12.12"
respx = "^0.22.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["avito"]
[tool.coverage.report]
skip_empty = true
show_missing = true
[tool.mypy]
python_version = "3.14"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_return_any = true
disallow_any_generics = true
no_implicit_optional = true
packages = ["avito"]
exclude = ["tests"]
[tool.ruff]
target-version = "py314"
line-length = 100
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"B",
"UP",
]
ignore = [
"E501",
"UP038",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"