-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 1.02 KB
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
28
29
30
31
32
33
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sploitscan"
version = "0.14.3"
description = "SploitScan is a cybersecurity utility designed to provide detailed information on vulnerabilities and associated exploits."
authors = [ { name = "Alexander Hagenah", email = "ah@primepage.de" } ]
license = { file = "LICENSE" }
dynamic = [ "readme" ]
dependencies = [
"requests==2.32.5",
"jinja2==3.1.6",
"openai==2.29.0",
"google-genai==1.56.0",
"GitPython==3.1.46",
"tqdm==4.67.3"
]
requires-python = ">=3.8"
[project.scripts]
sploitscan = "sploitscan.sploitscan:cli"
[project.urls]
homepage = "https://github.com/xaitax/SploitScan"
repository = "https://github.com/xaitax/SploitScan"
documentation = "https://github.com/xaitax/SploitScan#readme"
changelog = "https://github.com/xaitax/SploitScan"
[tool.setuptools]
dynamic.readme = { file = [ "README.md" ], content-type = "text/markdown" }
package-data.sploitscan = [ "templates/*.html", "config.json" ]