Files
securelens-backend/cli/pyproject.toml

30 lines
657 B
TOML
Raw Normal View History

2026-05-15 12:54:58 +05:30
[build-system]
2026-05-22 21:44:23 +05:30
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
2026-05-15 12:54:58 +05:30
[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",
2026-05-22 21:44:23 +05:30
"rich>=13.0",
"litellm>=1.0",
2026-05-15 12:54:58 +05:30
"httpx>=0.27",
"pyyaml>=6.0",
"questionary>=2.0",
"pathspec>=0.12",
"fpdf2>=2.7",
2026-05-15 12:54:58 +05:30
]
[project.scripts]
securelens = "securelens.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["securelens*"]