-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
44 lines (38 loc) · 940 Bytes
/
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
[tool.poetry]
name = "linklibrary"
version = "0.10.4"
description = "Link Archive"
authors = ["Iwan Grozny <renegat@renegat0x0.ddns.net>"]
license = "GPL3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
Django = "^5.2.0"
django-user-agents = "^0.4.0"
pymemcache = "^4.0.0"
celery = "^5.5.0"
python-dateutil = "^2.8.2"
yt-dlp = "^2024.12.23"
waybackpy = "^3.0.6"
sqlalchemy = "^2.0.38"
tldextract = "^5.1.2"
sympy = "^1.13.2"
spacy = "3.7.5"
# Do we need this?
pytz = "^2024.2"
# Do we need this?
beautifulsoup4 = "^4.13.3"
requests = "^2.32.3"
#psycopg2 = "*" # for raspberry install python3-psycopyg2
psycopg2-binary = "*" # for raspberry install python3-psycopyg2
psutil="*"
# TODO do we need this?
chardet = "^5.2.0"
# TODO do we need this?
lxml="^5.3.1"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
py-spy = "^0.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"