forked from Pymmdrza/SpyHunt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
126 lines (115 loc) · 3.08 KB
/
pyproject.toml
File metadata and controls
126 lines (115 loc) · 3.08 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
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spyhunt"
version = "4.0.10"
description = "A comprehensive network scanning and vulnerability assessment tool designed for security professionals"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [
{name = "Mmdrza", email = "[email protected]"}
]
maintainers = [
{name = "Mmdrza", email = "[email protected]"}
]
keywords = [
"security", "vulnerability", "scanner", "penetration-testing",
"reconnaissance", "bug-bounty", "web-security", "network-security",
"subdomain-enumeration", "vulnerability-scanner", "security-tools",
"pentesting", "ethical-hacking", "infosec", "cybersecurity"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Topic :: Security",
"Topic :: System :: Networking",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Environment :: Console",
]
dependencies = [
"colorama",
"requests",
"shodan",
"mmh3",
"PyExecJS",
"python3-nmap",
"beautifulsoup4",
"fake-useragent",
"googlesearch-python",
"alive-progress",
"python-whois",
"aiohttp",
"dnspython",
"waybackpy",
"ratelimit",
"pyjwt",
"boto3",
"ipinfo",
"tqdm",
"impacket",
"PySocks",
"urllib3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
"mypy>=0.950",
]
[project.urls]
Homepage = "https://spyhunt.readthedocs.io/"
Documentation = "https://spyhunt.readthedocs.io/en/latest/"
Repository = "https://github.com/Pymmdrza/spyhunt"
"Bug Reports" = "https://github.com/Pymmdrza/spyhunt/issues"
[project.scripts]
spyhunt = "spyhunt.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["spyhunt*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
spyhunt = [
"payloads/*.txt",
"scripts/*.sh",
"scripts/*.py",
"tools/*.py",
"tools/assetfinder",
"tools/smuggler/**/*",
"tools/whatwaf/**/*",
"LICENSE",
"README.md",
]
[tool.black]
line-length = 100
target-version = ["py37", "py38", "py39", "py310", "py311"]
include = '\.pyi?$'
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --cov=spyhunt --cov-report=term-missing"
[tool.mypy]
python_version = "3.7"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true