-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (97 loc) · 3.3 KB
/
Copy pathpyproject.toml
File metadata and controls
105 lines (97 loc) · 3.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "evalwire"
version = "0.6.0"
description = "Systematic evaluation of LangGraph nodes using Arize Phoenix experiments."
readme = "README.md"
license = "BSD-3-Clause"
authors = [{ name = "evalwire contributors" }]
requires-python = ">=3.10"
keywords = ["evaluation", "langgraph", "phoenix", "llm", "testing", "arize"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
dependencies = [
"arize-phoenix>=13.0,<16",
"pandas>=2.0",
"click>=8.0",
"jsonschema>=4.0",
"tomli>=2.0; python_version < '3.11'",
]
[project.urls]
Homepage = "https://zurfjereluhmie.github.io/evalwire/"
Repository = "https://github.com/zurfjereluhmie/evalwire"
Documentation = "https://zurfjereluhmie.github.io/evalwire/"
Changelog = "https://github.com/zurfjereluhmie/evalwire/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/zurfjereluhmie/evalwire/issues"
[project.optional-dependencies]
langgraph = ["langgraph>=1.1,<2"]
langchain = ["openinference-instrumentation-langchain>=0.1"]
openai = ["openinference-instrumentation-openai>=0.1"]
llm-judge = ["langchain-core>=1.0,<2"]
all = ["evalwire[langgraph,langchain,openai,llm-judge]"]
[project.scripts]
evalwire = "evalwire.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/evalwire"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = [
"ignore::DeprecationWarning:ldap3",
"ignore::DeprecationWarning:phoenix.evals",
"ignore::DeprecationWarning:phoenix.server",
"ignore::DeprecationWarning:phoenix.session",
"ignore::DeprecationWarning:strawberry",
"ignore::DeprecationWarning:pydantic",
"ignore::DeprecationWarning:alembic",
"ignore::sqlalchemy.exc.SAWarning",
"ignore::UserWarning:phoenix.client",
]
markers = [
"integration: tests that require a running Phoenix instance (deselect with '-m not integration')",
]
addopts = "-m 'not integration'"
[tool.mutmut]
paths_to_mutate = ["src/evalwire/"]
pytest_add_cli_args_test_selection = ["tests/"]
pytest_add_cli_args = ["--ignore=tests/test_evaluators_property.py", "--ignore=tests/integration"]
do_not_mutate = ["*__init__.py", "*cli.py"]
[dependency-groups]
dev = [
"hypothesis>=6.152.1",
"mkdocs>=1.6.1",
"mkdocs-include-markdown-plugin>=7.2.2",
"mkdocs-material>=9.0",
"mkdocstrings[python]>=0.25",
"mutmut>=3.5",
"pre-commit>=4.5.1",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=6.0",
"pytest-mock>=3.14",
"ruff>=0.15.8",
"ty>=0.0.26",
]
demo = [
"evalwire[langgraph,openai]",
"arize-phoenix>=13.0,<16",
"langchain>=1.0,<2",
"langchain-core>=1.0,<2",
"langchain-openai>=1.0,<2",
"langgraph>=1.1,<2",
"openai>=2.0,<3",
"openinference-instrumentation-langchain>=0.1,<0.2",
"python-dotenv>=1.0,<2",
]