-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
42 lines (37 loc) · 974 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "judges"
version = "0.0.5"
authors = [
{name = "Freddie Vargus", email = "[email protected]"},
{name = "James Liounis", email = "[email protected]"},
]
description = "A small library of research-backed LLM judges"
dependencies = [
"openai == 1.57.4",
]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["ai", "large language models", "llm-judge", "evaluation", "evals"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
litellm = [
"litellm==1.55.3",
]
auto = [
"instructor==1.7.0",
"pydantic==2.10.3",
"tenacity==9.0.0",
]
dev = [
"openai-responses==0.11.2",
]
[tool.setuptools.packages.find]
include = ["judges*"]
exclude = ["tests*"]