-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpyproject.toml
30 lines (26 loc) · 985 Bytes
/
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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sploitscan"
version = "0.12.0"
description = "SploitScan is a sophisticated 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.2",
"jinja2~=3.1.4",
"openai~=1.30.2"
]
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" ]