-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (61 loc) · 1.88 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "evalwire"
version = "0.3.1"
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"
dependencies = [
"arize-phoenix>=13.0,<14",
"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.6"]
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"
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.0",
"mkdocstrings[python]>=0.25",
"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,<14",
"langchain>=1.0,<2",
"langchain-core>=1.0,<2",
"langchain-openai>=1.0,<2",
"langgraph==1.1.6",
"openai>=2.0,<3",
"openinference-instrumentation-langchain>=0.1,<0.2",
"python-dotenv>=1.0,<2",
]