-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (36 loc) · 1.03 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "xfinder"
version = "0.2.3"
dependencies = [
"torch==2.3.1",
"transformers>=4.39.0",
"tqdm>=4.65.0",
"huggingface_hub",
"accelerate>=0.26.0",
"tenacity"
]
description = "An Robust and Pinpoint Answer Extractor for LLM Evaluation"
authors = [
{ name = "Qingchen Yu", email = "zhgqcyu@gmail.com" },
]
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["LLM", "NLP", "answer extraction", "reliable evaluation"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/IAAR-Shanghai/xFinder"
[project.scripts]
xfinder-run-example = "xfinder.eval:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
exclude = ["/scripts", "/CITATION.bib", "demo.ipynb"]