-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (66 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
77 lines (66 loc) · 1.63 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
packages = ["verdict"]
[project.urls]
homepage = "https://verdict.haizelabs.com"
documentation = "https://verdict.haizelabs.com/docs"
repository = "https://github.com/haizelabs/verdict"
issues = "https://github.com/haizelabs/verdict/issues"
[project]
name = "verdict"
version = "0.2.7"
authors = [{ name = "Nimit Kalra", email = "nimit@haizelabs.com" }]
license = { text = "MIT License" }
description = "LLM evaluation pipelines"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
]
dependencies = [
"instructor==1.7.2",
"litellm",
"openai",
"dill",
"graphviz",
"pandas",
"pydantic",
"numpy",
"rich",
"scikit-learn",
"scipy",
"datasets",
"tokenizers",
"networkx",
"pillow",
"eval-type-backport",
"typing_extensions",
"loguru",
"krippendorff"
]
[project.optional-dependencies]
dev = [
"ruff",
"isort",
"mypy",
"pytest",
# docs
"sphinx",
"sphinx-rtd-theme"
]
[project.requires-external]
graphviz = "Graphviz system package (e.g., 'apt-get install graphviz' on Debian, 'brew install graphviz' on macOS, 'choco install graphviz' on Windows)"
[tool.ruff]
include = ["verdict/**", "tests/**"]
[tool.ruff.lint]
extend-select = ["I"] # isort
[tool.mypy]
files = ["verdict"]
exclude=["examples", "docs", "notebooks"]
[tool.pytest.ini_options]
testpaths = ["tests"]