-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.31 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
[tool.poetry]
name = "ozon_collector"
version = "0.1.0"
description = "A tool to collect and analyze search queries on Ozon, providing insights into trending products."
authors = ["sergerdn <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
scrapy = "2.12.0"
playwright = "1.49.1"
scrapy-playwright = "0.0.42"
brotli = "1.1.0"
zstandard = "0.23.0"
python-dotenv = "1.0.1"
jinja2 = "3.1.4"
rich = "13.9.4"
tenacity = "9.0.0"
pydantic = "2.10.3"
twisted = {extras = ["http2"], version = "^24.11.0"}
[tool.poetry.group.dev.dependencies]
black = "24.10.0"
isort = "5.13.2"
docconvert = "2.2.0"
docformatter = "1.7.5"
mypy = "1.13.0"
flake8 = "7.1.1"
[tool.docformatter]
recursive = true
wrap-summaries = 120
blank = false
[tool.mypy]
mypy_path = "ozon_collector"
[[tool.mypy.overrides]]
module = "scrapy_playwright.handler"
ignore_missing_imports = true
strict = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = "ozon_collector.middlewares.*"
ignore_missing_imports = true
check_untyped_defs = false
disallow_untyped_defs = false
[tool.black]
line-length = 120
# skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 120
py_version = 310
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"