-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (43 loc) · 1.11 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
# if poetry update takes forever
# export PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring
[tool.poetry]
name = "linklibrary"
version = "0.10.4"
description = "Link Archive"
authors = ["Iwan Grozny <[email protected]>"]
license = "GPL3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
feedparser = "^6.0.10"
python-dateutil = "^2.8.2"
yt-dlp = "^2024.12.6"
waybackpy = "^3.0.6"
sqlalchemy = "^2.0.34"
tldextract = "^5.1.2"
beautifulsoup4 = "^4.12.3"
sympy = "^1.13.2"
spacy = "3.7.5"
lxml = "5.3.0"
# [optional] - at least one of methods need to be running
# example: crawlerrequests.py
requests = "^2.32.3"
pytz = "^2024.2"
# use things below if you want to use selenium
selenium="*"
psutil="*"
chardet = "^5.2.0"
# psycopg2 = "*"
pyvirtualdisplay = "^3.0"
# use things below if you want undetected chrome driver
undetected-chromedriver = "^3.5.5"
# use things below if you want to use crawlee
crawlee="0.1.1"
playwright="*"
stealth_requests = "*"
flask="*"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"