forked from confident-ai/deepteam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.07 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
[tool.poetry]
name = "deepteam"
version = "1.0.3"
description = "The LLM Red Teaming Framework"
authors = ["Jeffrey Ip <jeffreyip@confident-ai.com>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "deepteam"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.14"
aiohttp = ">=3.11.18"
deepeval = ">=3.6.2"
grpcio = ">=1.67.1"
openai = ">=1.76.2"
pyyaml = ">=6.0.2"
requests = ">=2.31.0"
tabulate = ">=0.9.0"
tqdm = ">=4.66.1"
[tool.poetry.group.dev.dependencies]
black = ">=25.1.0"
pytest-asyncio = ">=0.24.0"
pytest = ">=8.3.0"
datasets = "*"
[tool.poetry.group.build.dependencies]
build = ">=1.0.3"
twine = ">=6.1.0"
[tool.poetry.scripts]
deepteam = "deepteam.cli.main:app"
[tool.poetry.urls]
Repository = "https://github.com/confident-ai/deepteam"
Documentation = "https://trydeepteam.com"
Issues = "https://github.com/confident-ai/deepteam/issues"
[tool.black]
line-length = 80
[tool.pytest.ini_options]
addopts = "-m 'not skip_test'"
markers = [
"skip_test: skip the test",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"