mirror of
https://github.com/Rarebuffalo/securelens-backend.git
synced 2026-06-19 07:00:30 +00:00
29 lines
639 B
TOML
29 lines
639 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "securelens-ai"
|
|
version = "2.0.0"
|
|
description = "AI-powered CLI security scanner for codebases and URLs"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { text = "MIT" }
|
|
keywords = ["security", "cli", "sast", "ai", "scanner", "owasp"]
|
|
dependencies = [
|
|
"click>=8.1",
|
|
"rich>=13.0",
|
|
"litellm>=1.0",
|
|
"httpx>=0.27",
|
|
"pyyaml>=6.0",
|
|
"questionary>=2.0",
|
|
"pathspec>=0.12",
|
|
]
|
|
|
|
[project.scripts]
|
|
securelens = "securelens.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["securelens*"]
|