-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 812 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (24 loc) · 812 Bytes
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
[tool.poetry]
name = "scalable-plug-and-play-auto-detection-engine"
version = "1.0.0"
description = "SPADE is a modular vulnerability scanning framework that leverages external tools like nmap, curl, and more. It uses Python class decorators and reflection to auto-register modules for execution, making it easy to extend and customize."
authors = ["ReKon64 <cookiewithoutraisins@gmail.com>"]
license = "AGPL 3.0"
readme = "README.md"
packages = [
{ include = "core" },
{ include = "scanners" },
{ include = "templates" },
{ include = "main.py"}
]
[tool.poetry.scripts]
spade = "main:main"
[tool.poetry.dependencies]
python = "^3.9"
psutil = "^5.9.8"
requests = "^2.32.3"
beautifulsoup4 = "^4.13.4"
jinja2 = "^3.1.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"