forked from AIR-Bench/AIR-Bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1.27 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "air-benchmark"
version = "0.1.0"
description = "AIR-Bench: Automated Heterogeneous Information Retrieval Benchmark"
readme = "README.md"
authors = [{ name = "BAAI", email = "[email protected]" }, { name = "Jina AI", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
keywords = ["embedding", "benchmark", "air-bench", "reranker", "information retrieval"]
dependencies = [
"datasets>=2.19.0",
"rich>=13.7.1",
"pytrec_eval",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["black", "isort", "pytest"]
[project.urls]
homepage = "https://github.com/AIR-Bench/AIR-Bench/tree/main"
"Huggingface Organization" = "https://huggingface.co/AIR-Bench"
"Leaderboard" = "https://huggingface.co/spaces/AIR-Bench/leaderboard"
[tool.setuptools.packages.find]
exclude = ["tests", "results"]
[project.scripts]
realpython = "reader.__main__:main"