-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
103 lines (94 loc) · 2.5 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "ir_axioms"
authors = [
{name = "Alexander Bondarenko", email = "alexander.bondarenko@uni-jena.de"},
{name = "Maik Fröbe", email = "maik.froebe@uni-jena.de"},
{name = "Jan Heinrich Merker", email = "heinrich.merker@uni-jena.de"},
{name = "Benno Stein", email = "benno.stein@uni-weimar.de"},
{name = "Michael Völske", email = "michael.voelske@uni-weimar.de"},
{name = "Matthias Hagen", email = "matthias.hagen@uni-jena.de"},
]
description = "Intuitive interface to many IR axioms."
readme = "README.md"
requires-python = ">=3.8,<3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"annoy~=1.17",
"cached-property~=1.5",
"class-registry~=2.1",
"click~=8.1",
"diskcache~=5.4",
"fasteners~=0.19.0",
"h5py~=3.6",
"importlib-metadata>=8.0.0,<9",
"ir-datasets~=0.4",
"joblib~=1.0",
"lz4~=4.0",
"nltk~=3.6",
"numpy>=1.21,<2.0",
"pandas>=1.3,<3.0",
"pymagnitude~=0.1.143",
"requests~=2.26",
"scikit-learn~=1.0",
"targer-api~=1.0",
"torch~=2.1",
"tqdm~=4.8",
"trectools~=0.0.44",
"typing-extensions~=4.0",
"xxhash~=3.0",
"wget",
]
dynamic = ["version"]
[project.optional-dependencies]
test =[
"flake8>=6.1,<8.0",
"pylint~=3.0",
"pytest>=7.2,<9.0",
"pytest-cov>=4,<6",
"python-terrier~=0.10.0",
]
examples =[
"jupyter~=1.0",
"jupyterlab~=4.0",
"lightgbm>=3.3,<5.0",
"xgboost~=2.0",
]
pyserini =[
"pyserini~=0.22",
"pyjnius~=1.4",
"faiss-cpu~=1.7",
]
pyterrier =[
"python-terrier~=0.10.0",
"pyjnius~=1.4",
]
[project.urls]
"Homepage" = "https://github.com/webis-de/ir_axioms"
"Bug Tracker" = "https://github.com/webis-de/ir_axioms/issues"
[project.scripts]
ir_axioms = "ir_axioms:__main__"
[build-system]
requires = ["setuptools>=50", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["ir_axioms"]
namespaces = false
[tool.setuptools.package-data]
mypkg = ["*.txt", "*.md", "*.rst"]
[tool.pytest.ini_options]
log_cli = "True"
filterwarnings = [
'ignore::DeprecationWarning',
]
[tool.setuptools_scm]