forked from modelscope/evalscope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.93 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
56
57
58
59
60
61
62
63
[project]
name = "evalscope"
dynamic = ["version", "dependencies", "optional-dependencies"]
description = "EvalScope: Lightweight LLMs Evaluation Framework"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "Apache License 2.0"}
authors = [
{name = "ModelScope team"},
{email = "contact@modelscope.cn"}
]
keywords = ["python", "llm", "evaluation"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License"
]
[project.urls]
Homepage = "https://github.com/modelscope/evalscope"
[project.scripts]
evalscope = "evalscope.cli.cli:run_cmd"
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["evalscope*"]
[tool.setuptools.dynamic]
version = {attr = "evalscope.version.__version__"}
dependencies = {file = ["requirements/framework.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
opencompass = {file = ["requirements/opencompass.txt"]}
vlmeval = {file = ["requirements/vlmeval.txt"]}
rag = {file = ["requirements/rag.txt"]}
perf = {file = ["requirements/perf.txt"]}
app = {file = ["requirements/app.txt"]}
aigc = {file = ["requirements/aigc.txt"]}
sandbox = {file = ["requirements/sandbox.txt"]}
service = {file = ["requirements/service.txt"]}
dev = {file = ["requirements/dev.txt"]}
docs = {file = ["requirements/docs.txt"]}
all = {file = [
"requirements/opencompass.txt",
"requirements/vlmeval.txt",
"requirements/rag.txt",
"requirements/perf.txt",
"requirements/app.txt",
"requirements/aigc.txt",
"requirements/service.txt"
]}