-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (41 loc) · 1.39 KB
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "evalarc"
version = "0.10.1"
description = "Auditable task environments and evaluations for coding and tool-using agents."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{name = "EvalArc contributors"}]
keywords = ["agents", "evaluation", "reinforcement-learning", "software-engineering"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/noteflowai/evalarc"
Documentation = "https://github.com/noteflowai/evalarc/blob/main/README.md"
Repository = "https://github.com/noteflowai/evalarc"
Issues = "https://github.com/noteflowai/evalarc/issues"
Demo = "https://huggingface.co/spaces/glayguo/evalarc"
[project.scripts]
evalarc = "evalarc.cli:main"
[project.optional-dependencies]
dev = ["pytest>=8,<9", "ruff>=0.11,<1", "build>=1,<2"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
evalarc = ["assets/*.py", "assets/*.md", "assets/*.js", "assets/*.json", "assets/*.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
extend-exclude = ["examples/skill-impact", "examples/research"]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]