-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.12 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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ir-trove"
authors = [
{ name = "Reza Esfandiarpoor", email = "reza_esfandiarpoor@brown.edu" },
]
description = "A Flexible Toolkit for Dense Retrieval"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
dynamic = [
"version",
]
requires-python = ">=3.10"
dependencies = [
"datasets >= 2.7.0",
"accelerate",
"huggingface_hub",
"numpy >= 1.26.0",
"polars >= 1.13.0",
"pyarrow >= 16.1.0",
"pytrec_eval",
"torch >= 2.0.0",
"tqdm",
"transformers >= 4.43.0",
"peft",
"wandb >= 0.16.0",
"xxhash >= 3.4.0",
"rich",
]
[tool.setuptools.dynamic]
version = { attr = "trove.__version__" }
[project.urls]
Homepage = "https://github.com/BatsResearch/trove"
Issues = "https://github.com/BatsResearch/trove/issues"
[project.scripts]
trove-cli = "trove.commands.trove_cli:main"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
known_third_party = "wandb"