-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
89 lines (82 loc) · 2.41 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "archive-query-log"
authors = [
{name = "Jan Heinrich Reimer", email = "[email protected]"},
{name = "Sebastian Schmidt", email = "[email protected]"},
{name = "Maik Fröbe", email = "[email protected]"},
{name = "Lukas Gienapp", email = "[email protected]"},
{name = "Harrisen Scells", email = "[email protected]"},
{name = "Benno Stein", email = "[email protected]"},
{name = "Matthias Hagen", email = "[email protected]"},
{name = "Martin Potthast", email = "[email protected]"},
]
description = "Mining Millions of Search Result Pages of Hundreds of Search Engines from 25 Years of Web Archives"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"aiohttp~=3.8",
"aiohttp-retry~=2.8",
"asyncio-pool~=0.6.0",
"beautifulsoup4~=4.11",
"bleach~=6.0",
"click~=8.1",
"dataclasses-json~=0.6.0",
"diskcache~=5.4",
"fasttext-langdetect~=1.0",
"fastwarc~=0.14.0",
"flake8~=7.0",
"fasttext @ git+https://github.com/cfculhane/fastText.git@4a44513",
"joblib~=1.2",
"jupyter~=1.0",
"marshmallow~=3.19",
"matplotlib~=3.7",
"pandas~=2.0",
"pex~=2.1",
"publicsuffixlist~=0.9.3",
"pyarrow~=15.0.0",
"pycld3~=0.22.0",
"pyspark~=3.5",
"python-slugify~=8.0",
"pyyaml~=6.0",
"ranx~=0.3.6",
"requests~=2.28",
"requests-html~=0.10.0",
"seaborn~=0.13.0",
"tqdm~=4.64",
"unidecode~=1.3",
"urllib3~=2.1",
"warcio~=1.7",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"approvaltests~=11.0",
"flake8~=7.0",
"pylint~=3.1",
"pytest~=8.0",
"pytest-cov~=4.0",
]
[build-system]
requires = ["setuptools>=50", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "archive_query_log.__version__"}
[tool.setuptools.packages.find]
include = ["archive_query_log"]
namespaces = false
[tool.setuptools.package-data]
mypkg = ["*.txt", "*.md", "*.rst"]
[tool.pytest.ini_options]
log_cli = "True"
filterwarnings = [
'ignore::DeprecationWarning',
]