-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
64 lines (55 loc) · 1.37 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
63
64
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "eval_suite"
dependencies = [
# Common
"torch",
"tqdm",
"ipykernel",
# OpenAI API
"openai",
"tenacity",
# Hugging Face Transformers
"transformers",
"accelerate",
"sentencepiece",
# Metrics
"nltk",
"rouge_score",
"text2vec",
"absl-py",
# Formatting
"black",
"isort",
]
authors = [{ name = "Shichao Song", email = "[email protected]" }]
description = "User-friendly evaluation framework: Eval Suite & Benchmarks: UHGEval, HaluEval, HalluQA, etc."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
keywords = [
"UHGEval",
"Chinese",
"hallucination",
"evaluation",
"llm",
"eval_suite",
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/IAAR-Shanghai/UHGEval"
[project.scripts]
eval_suite = "eval_suite.cli:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
exclude = [".github", "/docs", "/page", "demo.ipynb"]