-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
62 lines (55 loc) · 1.53 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fanoutqa"
version = "1.1.1"
authors = [
{ name = "Andrew Zhu", email = "[email protected]" },
{ name = "Alyssa Hwang", email = "[email protected]" },
{ name = "Liam Dugan", email = "[email protected]" },
]
description = "The companion code for the FanOutQA dataset + benchmark for LLMs."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
# https://pypi.org/classifiers/
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"ftfy>=6.1.3,<=7.0.0",
"httpx>=0.26.0,<1.0.0",
"markdownify~=0.11.6",
"spacy>=3.7.2,<4.0.0",
]
[project.optional-dependencies]
all = ["fanoutqa[retrieval,eval]"]
retrieval = [
"rank-bm25~=0.2.2",
]
eval = [
"kani[openai]>=1.0.0rc0,<2.0.0",
"rouge-score~=0.1.2",
]
[project.urls]
"Homepage" = "https://github.com/zhudotexe/fanoutqa"
"Bug Tracker" = "https://github.com/zhudotexe/fanoutqa/issues"
[tool.black]
line-length = 120
preview = true
extend-exclude = "reference"
[tool.isort]
profile = "black"
skip_gitignore = true
line_length = 120
known_first_party = ["fanoutqa"]
extend_skip = ["reference"]
# I am bound by pycharm's import autosorting rules
no_lines_before = "LOCALFOLDER"
reverse_relative = true
combine_as_imports = true