mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 06:09:55 +02:00
b29661d18c
Bumps [black](https://github.com/psf/black) from 23.12.1 to 24.4.2. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/23.12.1...24.4.2) --- updated-dependencies: - dependency-name: black dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.1 KiB
TOML
51 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "langalf"
|
|
version = "0.0.4"
|
|
description = "Agentic LLM vulnerability scanner"
|
|
authors = ["Alexander Miasoiedov <msoedov@gmail.com>"]
|
|
maintainers = ["Alexander Miasoiedov <msoedov@gmail.com>"]
|
|
repository = "https://github.com/msoedov/langalf"
|
|
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 = "langalf", from = "." }]
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
langalf = "langalf.__main__:entrypoint"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
fastapi = ">=0.109.1,<0.111.0"
|
|
uvicorn = ">=0.23.2,<0.30.0"
|
|
fire = "^0.5.0"
|
|
loguru = "^0.7.2"
|
|
httpx = ">=0.25.1,<0.28.0"
|
|
cache-to-disk = "^2.0.0"
|
|
pandas = "^1.4.0"
|
|
datasets = "^1.14.0"
|
|
|
|
[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"
|
|
pre-commit = "^3.5.0"
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|