-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 925 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ep-geval"
version = "0.1.0"
description = "Native G-Eval benchmark package for Eval Protocol"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Eval Protocol", email = "info@fireworks.ai" }
]
license = { text = "MIT" }
dependencies = [
"eval-protocol>=0.3.0",
"openai>=1.78.1",
"pytest>=8.0.0",
"pytest-asyncio>=0.21.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.9.0",
]
[project.urls]
Homepage = "https://github.com/eval-protocol/geval"
Repository = "https://github.com/eval-protocol/geval"
[project.scripts]
geval-build-data = "geval.prepare_data:main"
[tool.setuptools.packages.find]
include = ["geval*"]
[tool.ruff]
line-length = 119
target-version = "py310"
[tool.pytest.ini_options]
addopts = "-q -s"
testpaths = ["tests", "benchmarks"]
python_files = ["test_*.py"]