-
Notifications
You must be signed in to change notification settings - Fork 379
/
pyproject.toml
57 lines (53 loc) · 1.35 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [""]
include = ["pyserini*"]
exclude = ["tests*", "tests-optional", "integrations", "integrations-optional"]
namespaces = false
[project]
name = "pyserini"
version = "0.43.0"
authors = [
{ name="Jimmy Lin", email="[email protected]" },
]
description = "A Python toolkit for reproducible information retrieval research with sparse and dense representations"
readme = "project-description.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"tqdm",
"pyyaml",
"requests",
"Cython>=0.29.21",
"numpy>=1.18.1",
"pandas>=1.4.0",
"pyjnius>=1.6.0",
"scikit-learn>=0.22.1",
"scipy>=1.4.1",
"transformers>=4.6.0",
"torch>=2.4.0",
"onnxruntime>=1.8.1",
"openai>=1.0.0",
"sentencepiece>=0.2",
"tiktoken>=0.4.0",
"flask>3.0",
"pillow>=10.2.0"
]
[project.urls]
Homepage = "https://github.com/castorini/pyserini"
Issues = "https://github.com/castorini/pyserini/issues"
[project.optional-dependencies]
optional = [
"faiss>1.7.0",
"nmslib>=2.0.6",
"lightgbm>=3.3.2",
"spacy>=3.2.1",
"pyarrow>=15.0.0",
"pybind11>=2.11.0"
]