-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 921 Bytes
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 921 Bytes
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
[tool.poetry]
name = "tpdb"
version = "1.0"
description = ""
authors = ["DirtyRacer1337 <DirtyRacer@ya.ru>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.14"
scrapy = "*"
tldextract = "*"
pymongo = "*"
python-slugify = "*"
dateparser = "*"
requests = "*"
yapf = "*"
extruct = "*"
chompjs = "*"
mdutils = "*"
PySide6 = "*"
Unidecode = "*"
dpath = "*"
scrapy_splash = "*"
googletrans = "*"
deep_translator = "*"
pytesseract = "*"
pillow = "*"
furl = "*"
pycountry = "*"
httpx = {extras = ["http2", "socks"], version = "*"}
[tool.poetry.group.dev.dependencies]
ruff = "*"
[tool.ruff]
exclude = [".git", "__pycache__"]
line-length = 320
indent-width = 4
target-version = "py39"
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E501", "E722"]
[build-system]
requires = ["poetry-core>=1.8.1"]
build-backend = "poetry.core.masonry.api"