-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
62 lines (59 loc) · 1.49 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "stark_qa"
version = "0.1.3"
dependencies = [
"anthropic>=0.27.0",
"bs4",
"bm25s",
"colbert-ai",
"gdown",
"gritlm",
"huggingface_hub",
"langchain",
"langdetect",
"llm2vec",
"multiprocess",
"nltk",
"numpy",
"ogb",
"openai",
"pandas",
"PyTDC",
"torch",
"torch_geometric",
"torchmetrics",
"tqdm",
"transformers",
"voyageai"
]
requires-python = ">=3.8,<3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
authors = [
{ name="STaRK team", email="[email protected]" },
]
maintainers = [
{ name="STaRK team", email="[email protected]" },
]
description = "Benchmarking LLM Retrieval on Textual and Relational Knowledge Bases"
readme = "README.md"
license = {text = "MIT License"}
keywords = ["nlp", "information-retrieval", "graph", "knowledge-base", "semi-structured-data", "multimodal", "llm"]
[tool.setuptools.packages.find]
where = ["."]
include = ["stark_qa*"]
namespaces = false
[project.urls]
Homepage = "https://stark.stanford.edu/"
Repository = "https://github.com/snap-stanford/stark.git"