mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 06:09:55 +02:00
befe488ab5
Bumps [fire](https://github.com/google/python-fire) from 0.5.0 to 0.6.0. - [Release notes](https://github.com/google/python-fire/releases) - [Commits](https://github.com/google/python-fire/compare/v0.5.0...v0.6.0) --- updated-dependencies: - dependency-name: fire dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
56 lines
1.3 KiB
TOML
56 lines
1.3 KiB
TOML
[tool.poetry]
|
|
name = "agentic_security"
|
|
version = "0.1.3"
|
|
description = "Agentic LLM vulnerability scanner"
|
|
authors = ["Alexander Miasoiedov <msoedov@gmail.com>"]
|
|
maintainers = ["Alexander Miasoiedov <msoedov@gmail.com>"]
|
|
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.9"
|
|
fastapi = ">=0.109.1,<0.112.0"
|
|
uvicorn = ">=0.23.2,<0.30.0"
|
|
fire = ">=0.5,<0.7"
|
|
loguru = "^0.7.2"
|
|
httpx = ">=0.25.1,<0.28.0"
|
|
cache-to-disk = "^2.0.0"
|
|
pandas = ">=1.4,<3.0"
|
|
datasets = "^1.14.0"
|
|
tabulate = ">=0.8.9,<0.10.0"
|
|
colorama = "^0.4.4"
|
|
matplotlib = "^3.4.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = ">=23.10.1,<25.0.0"
|
|
mypy = "^1.6.1"
|
|
httpx = ">=0.25.1,<0.28.0"
|
|
pytest = ">=7.4.3,<9.0.0"
|
|
pre-commit = "^3.5.0"
|
|
inline-snapshot = "^0.8.0"
|
|
langchain-groq = "^0.1.3"
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|