-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpyproject.toml
43 lines (38 loc) · 930 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
43
[tool.ruff]
line-length = 120
target-version = "py39"
lint.isort.known-first-party = ["evaltools"]
lint.select = ["E", "F", "I", "UP"]
lint.ignore = ["D203"]
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.pytest.ini_options]
addopts = "-ra"
[project]
name = "evaltools"
version = "0.1.1"
description = "Evaluate chat applications using Azure OpenAI evaluators"
dependencies = [
"requests",
"python-dotenv",
"azure-ai-generative[evaluate]==1.0.0b11",
"azure-ai-evaluation==1.1.0",
"marshmallow==3.23.2", # Older version required due to promptflow issue with _T import
"azure-search-documents",
"typer",
"openai>=1.56.1", # Includes fix for httpx proxies issues
"pandas",
"rich",
"jmespath",
"textual"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"ruff",
"black",
"pytest"
]
[tool.setuptools.package-data]
evaltools = ["review/*.tcss"]