pyproject.toml 2.66 KB
Newer Older
1
2
3
4
5
6
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "lm_eval"
Hailey Schoelkopf's avatar
Hailey Schoelkopf committed
7
version = "0.4.0"
8
9
10
11
12
13
14
15
16
17
18
authors = [
    {name="EleutherAI", email="contact@eleuther.ai"}
]
description = "A framework for evaluating language models"
readme = "README.md"
classifiers = [
    "Development Status :: 3 - Alpha",
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]
19
requires-python = ">=3.8"
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
license = { "text" = "MIT" }
dependencies = [
    "accelerate>=0.21.0",
    "evaluate",
    "datasets>=2.0.0",
    "evaluate>=0.4.0",
    "jsonlines",
    "numexpr",
    "peft>=0.2.0",
    "pybind11>=2.6.2",
    "pytablewriter",
    "rouge-score>=0.0.4",
    "sacrebleu>=1.5.0",
    "scikit-learn>=0.24.1",
    "sqlitedict",
    "torch>=1.8",
    "tqdm-multiprocess",
    "transformers>=4.1",
    "zstandard",
]

Hailey Schoelkopf's avatar
Hailey Schoelkopf committed
41
[tool.setuptools.packages.find]
Hailey Schoelkopf's avatar
Hailey Schoelkopf committed
42
include = ["lm_eval*"]
Hailey Schoelkopf's avatar
Hailey Schoelkopf committed
43

44
45
# required to include yaml files in pip installation
[tool.setuptools.package-data]
Hailey Schoelkopf's avatar
Hailey Schoelkopf committed
46
lm_eval = ["**/*.yaml", "tasks/**/*"]
47
48

[project.scripts]
haileyschoelkopf's avatar
haileyschoelkopf committed
49
50
lm-eval = "lm_eval.__main__:cli_evaluate"
lm_eval = "lm_eval.__main__:cli_evaluate"
51
52
53
54
55
56

[project.urls]
Homepage = "https://github.com/EleutherAI/lm-evaluation-harness"
Repository = "https://github.com/EleutherAI/lm-evaluation-harness"

[project.optional-dependencies]
57
anthropic = ["anthropic"]
58
dev = ["pytest", "pytest-cov", "pytest-xdist", "pre-commit", "mypy"]
59
60
61
gptq = ["auto-gptq[triton] @ git+https://github.com/PanQiWei/AutoGPTQ"]
ifeval = ["langdetect", "immutabledict"]
mamba = ["mamba_ssm", "causal-conv1d==1.0.2"]
62
math = ["sympy>=1.12", "antlr4-python3-runtime==4.11"]
63
64
multilingual = ["nagisa>=0.2.7", "jieba>=0.42.1", "pycountry"]
openai = ["openai==1.3.9", "tiktoken"]
65
66
67
promptsource = [
    "promptsource @ git+https://github.com/bigscience-workshop/promptsource.git#egg=promptsource"
]
68
69
sentencepiece = ["sentencepiece>=0.1.98", "protobuf>=4.22.1"]
testing = ["pytest", "pytest-cov", "pytest-xdist"]
70
vllm = ["vllm<=0.2.5"]
71
zeno = ["pandas", "zeno-client"]
72
all = [
73
    "lm_eval[anthropic]",
74
    "lm_eval[dev]",
75
76
    "lm_eval[gptq]",
    "lm_eval[ifeval]",
77
    "lm_eval[linting]",
78
79
    "lm_eval[mamba]",
    "lm_eval[math]",
80
    "lm_eval[multilingual]",
baberabb's avatar
baberabb committed
81
    "lm_eval[openai]",
82
83
84
    "lm_eval[promptsource]",
    "lm_eval[sentencepiece]",
    "lm_eval[testing]",
baberabb's avatar
baberabb committed
85
    "lm_eval[vllm]",
86
    "lm_eval[zeno]",
87
]
88
89
90
91
92
93
94
95
96
97
98
99
100
101

[tool.ruff]
extend-exclude = ["lm_eval/evaluator.py", "lm_eval/tasks/*.py"]

[tool.ruff.lint]
extend-select = ["I"]

[tool.ruff.isort]
lines-after-imports = 2
known-first-party = ["lm_eval"]

[tool.ruff.extend-per-file-ignores]
"__init__.py" = ["F401","F402","F403","I"]
"lm_eval/tasks/*"= ["E721"]