-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.41 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "social-engineer-toolkit"
version = "8.1.3"
description = "An open-source penetration testing framework for authorized social-engineering assessments."
readme = "README.md"
requires-python = ">=3.11,<3.14"
license = { file = "readme/LICENSE" }
authors = [
{ name = "David Kennedy" },
]
keywords = ["security", "penetration-testing", "social-engineering", "red-team"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
]
dependencies = [
"pexpect",
"pycryptodome",
"requests",
"pyOpenSSL",
"pefile",
"impacket",
"qrcode",
"pillow",
"pymssql<3.0",
]
[project.urls]
Homepage = "https://github.com/trustedsec/social-engineer-toolkit"
Issues = "https://github.com/trustedsec/social-engineer-toolkit/issues"
[tool.setuptools]
include-package-data = true
script-files = ["setoolkit", "seautomate", "seproxy", "seupdate"]
[tool.setuptools.packages.find]
include = ["src*"]