-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.54 KB
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
67
[project]
name = "maalfrid_toolkit"
version = "1.5.6"
description = "Toolkit for the Målfrid project"
authors = [
{name = "Magnus Breder Birkenes", email = "magnus.birkenes@nb.no"},
]
dependencies = [
"certifi>=2026.2.25",
"charset-normalizer>=3.4.0",
"faust-cchardet==2.1.19",
"gielladetect==1.0.3",
"html5lib==1.1",
"idna==3.12",
"lxml==6.1.0",
"numpy>=2.2.6",
"python-dateutil==2.9.0.post0",
"pytz>=2026.1.post1",
"requests>=2.33.1",
"six==1.17.0",
"soupsieve==2.8.3",
"typing-extensions>=4.12.2",
"tzdata>=2026.1",
"urllib3>=2.5.0,<3.0",
"webencodings==0.5.1",
"pyyaml>=6.0.2",
"warcio>=1.7.4",
"psycopg2-binary>=2.9.10",
"PyMuPDF==1.23.26",
"joblib>=1.5.3",
"tqdm>=4.67.1",
"python-docx==1.2.0",
"docx2txt>=0.8",
"simhash>=2.1.2",
"python-dotenv>=1.0.1",
"beautifulsoup4>=4.14.2",
"pygtrie>=2.5.0",
]
requires-python = ">=3.10,<3.13"
readme = "README.md"
license-files = ["LICENSE.txt", "src/justext/LICENSE"]
[project.optional-dependencies]
glotlid = ["fasttext>=0.9.3", "huggingface-hub>=0.26.3"]
htmldate = ["htmldate>=1.9.3"]
[project.urls]
repository = "https://github.com/NationalLibraryOfNorway/maalfrid_toolkit"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
packages = [{include = "src/maalfrid_toolkit", from = "src"}]
[dependency-groups]
dev = [
"pytest>=8.3.5",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::SyntaxWarning"
]