forked from openai/evals
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
61 lines (56 loc) · 1.1 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
[project]
name = "evals"
version = "2.0.0.post1"
requires-python = ">=3.9"
readme = "README.md"
dependencies = [
"mypy",
"openai>=1.0.0",
"tiktoken",
"blobfile",
"backoff",
"numpy",
"snowflake-connector-python[pandas]",
"pandas",
"datasets",
"fire",
"pydantic",
"tqdm",
"nltk",
"filelock",
"mock",
"langdetect",
'termcolor',
"lz4",
"pyzstd",
"pyyaml",
"sacrebleu",
"matplotlib",
"pytest",
"langchain",
"numexpr",
"types-PyYAML",
"spacy-universal-sentence-encoder",
"jiwer",
"seaborn",
"statsmodels",
]
[project.urls]
repository = "https://github.com/openai/evals"
[project.optional-dependencies]
formatters = [
"black",
"isort",
"autoflake",
"ruff"
]
[project.scripts]
oaieval = "evals.cli.oaieval:main"
oaievalset = "evals.cli.oaievalset:main"
llmreport = "evals.cli.llmreport: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