forked from openai/evals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (64 loc) · 1.29 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
65
66
67
68
69
70
[project]
name = "evals"
version = "3.0.1.post1"
requires-python = ">=3.9"
readme = "README.md"
dependencies = [
"aiolimiter",
"anthropic",
"backoff",
"beartype>=0.12.0",
"blobfile",
"chess",
"dacite",
"datasets",
"docker",
"evaluate",
"filelock",
"fire",
"flask",
"google-generativeai",
"gymnasium",
"jiwer",
"langchain",
"langdetect",
"lz4",
"matplotlib",
"mock",
"mypy",
"networkx",
"nltk",
"numexpr",
"numpy",
"openai>=1.0.0",
"pandas",
"playwright",
"pydantic",
"pytest",
"pyyaml",
"sacrebleu",
"seaborn",
"snowflake-connector-python[pandas]",
"spacy-universal-sentence-encoder",
"statsmodels",
"termcolor",
"tiktoken",
"tqdm",
"types-PyYAML",
"types-tqdm",
"zstandard",
]
[project.urls]
repository = "https://github.com/openai/evals"
[project.optional-dependencies]
formatters = ["black", "isort", "autoflake", "ruff"]
torch = ["torch"]
[project.scripts]
oaieval = "evals.cli.oaieval:main"
oaievalset = "evals.cli.oaievalset:main"
[tool.setuptools]
packages = ["evals"]
[tool.ruff]
# Allow lines to be as long as 767 characters, this is currently the longest line
# TODO: This should be brought down in the future
line-length = 767