-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathpyproject.toml
33 lines (29 loc) · 1.02 KB
/
pyproject.toml
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.13.0"
description = "SploitScan is a cybersecurity utility designed to provide detailed information on vulnerabilities and associated exploits."
authors = [ { name = "Alexander Hagenah", email = "[email protected]" } ]
license = { file = "LICENSE" }
dynamic = [ "readme" ]
dependencies = [
"requests==2.32.3",
"jinja2==3.1.6",
"openai==1.65.4",
"google-genai==1.4.0",
"GitPython==3.1.44",
"tqdm==4.67.1"
]
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" ]