-
Notifications
You must be signed in to change notification settings - Fork 91
/
pyproject.toml
70 lines (61 loc) · 1.62 KB
/
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
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
[tool.poetry]
name = "agentic_security"
version = "0.3.4"
description = "Agentic LLM vulnerability scanner"
authors = ["Alexander Miasoiedov <[email protected]>"]
maintainers = ["Alexander Miasoiedov <[email protected]>"]
repository = "https://github.com/msoedov/agentic_security"
license = "MIT"
readme = "Readme.md"
keywords = [
"LLM vulnerability scanner",
"llm security",
"llm adversarial attacks",
"prompt injection",
"prompt leakage",
"prompt injection attacks",
"prompt leakage prevention",
"llm vulnerabilities",
"owasp-llm-top-10",
]
packages = [{ include = "agentic_security", from = "." }]
[tool.poetry.scripts]
agentic_security = "agentic_security.__main__:entrypoint"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.115.6"
uvicorn = "^0.32.0"
fire = "0.7.0"
loguru = "^0.7.3"
httpx = "^0.28.1"
cache-to-disk = "^2.0.0"
pandas = ">=1.4,<3.0"
datasets = ">=1.14,<4.0"
tabulate = ">=0.8.9,<0.10.0"
colorama = "^0.4.4"
matplotlib = "^3.9.2"
pydantic = "2.10.4"
scikit-optimize = "^0.10.2"
scikit-learn = "1.5.2"
numpy = ">=1.24.3,<3.0.0"
jinja2 = "^3.1.4"
python-multipart = "^0.0.20"
# garak = { version = "*", optional = true }
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.24.0"
inline-snapshot = ">=0.13.3,<0.19.0"
black = "^24.10.0"
mypy = "^1.12.0"
pytest = "^8.3.4"
pre-commit = "^4.0.1"
langchain-groq = "^0.2.0"
huggingface-hub = "^0.25.1"
pytest-httpx = "^0.35.0"
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"