forked from openai/evals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (49 loc) · 957 Bytes
/
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
[project]
name = "evals"
version = "1.0.3.post1"
requires-python = ">=3.9"
dependencies = [
"mypy",
"openai >= 0.27.2",
"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",
"types-PyYAML",
"spacy-universal-sentence-encoder",
"jiwer",
]
[project.optional-dependencies]
formatters = [
"black",
"isort",
"autoflake",
"ruff"
]
[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