-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (58 loc) · 1.2 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
63
64
65
66
[tool.poetry]
name = "lazuli"
version = "0.1.0"
description = "Python crawler that crawls product pages and scrapes required information"
authors = ["rifatrakib <Rakib.1508@outlook.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^1.10.7"
Scrapy = "^2.8.0"
pandas = "^2.0.0"
openpyxl = "^3.1.2"
jinja2 = "^3.1.2"
pydash = "^7.0.1"
typer = "^0.7.0"
python-decouple = "^3.8"
seaborn = "^0.12.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.2"
black = "^23.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
ruff = "^0.0.261"
[tool.black]
line-length = 140
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
)/
'''
[tool.flake8]
max-line-length = 140
exclude = [".git", "__pycache__", "dist"]
max-complexity = 10
[tool.isort]
atomic = true
profile = "black"
line_length = 140
skip_gitignore = true
[tool.ruff]
line-length = 140
exclude = [".git", "__pycache__", "dist"]
target-version = "py39"
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.mccabe]
max-complexity = 10
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"