-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (103 loc) · 2.75 KB
/
Copy pathpyproject.toml
File metadata and controls
113 lines (103 loc) · 2.75 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[project]
name = "getsploit"
version = "3.0.1"
description = "Fast exploit search for the Vulners database, online and offline."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Vulners Team", email = "info@vulners.com" }]
keywords = [
"cve",
"exploit",
"exploit-database",
"exploitdb",
"infosec",
"metasploit",
"offensive-security",
"packetstorm",
"pentesting",
"security",
"vulnerability",
"vulners",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"click>=8.2,<9",
"rich>=14.2,<15",
"vulners>=4.1.0,<5",
]
[project.urls]
Homepage = "https://github.com/vulnersCom/getsploit"
Changelog = "https://github.com/vulnersCom/getsploit/blob/master/CHANGELOG.md"
Documentation = "https://github.com/vulnersCom/getsploit#readme"
Issues = "https://github.com/vulnersCom/getsploit/issues"
Repository = "https://github.com/vulnersCom/getsploit"
"Vulners API key" = "https://vulners.com/userinfo"
[project.scripts]
getsploit = "getsploit.cli:main"
[dependency-groups]
test = [
"pytest>=8.3",
"pytest-asyncio>=0.24",
"pytest-cov>=5",
"pytest-xdist>=3.6",
]
lint = [
"mypy>=1.15",
"ruff>=0.11.8",
]
security = ["detect-secrets>=1.5,<2"]
release = [
"check-wheel-contents>=0.6,<1",
"twine>=6.2,<7",
]
dev = [
{ include-group = "test" },
{ include-group = "lint" },
{ include-group = "security" },
{ include-group = "release" },
]
[build-system]
requires = ["uv_build>=0.11.29,<0.12"]
build-backend = "uv_build"
[tool.pytest.ini_options]
addopts = ["--strict-config", "--strict-markers", "-ra"]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
parallel = true
source = ["getsploit"]
[tool.coverage.report]
fail_under = 100
show_missing = true
skip_covered = true
exclude_also = ["if TYPE_CHECKING:", "if __name__ == .__main__.:"]
[tool.ruff]
line-length = 98
target-version = "py311"
[tool.ruff.lint]
select = ["A", "ASYNC", "B", "C4", "E", "F", "I", "N", "PERF", "PIE", "PL", "PTH", "RUF", "SIM", "UP", "W"]
ignore = ["PLR2004"]
[tool.mypy]
python_version = "3.11"
strict = true
pretty = true
files = ["src", "tests"]