-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.57 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
[build-system]
requires = [
"setuptools>=77.0.0",
"scapy@git+https://github.com/secdev/scapy.git#sha1=85825ed5515fda3b079d4d9a926f06f81648796f",
"scapy-rpc>=0.0.7",
]
build-backend = "setuptools.build_meta"
[project]
name = "scapy-red"
version = "0.0.3"
dynamic = [ "readme" ]
authors = [
{ name="Gabriel POTTER" },
]
license = "GPL-2.0-only"
requires-python = ">=3.11, <4"
description = "Scapy RED - tools and scripts for pentesters"
keywords = [ "network" ]
dependencies = [
"scapy",
"scapy-rpc>=0.0.4",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: System :: Networking",
]
[project.urls]
Homepage = "https://github.com/secdev/scapy-red"
Download = "https://github.com/secdev/scapy-red/tarball/master"
"Source Code" = "https://github.com/secdev/scapy-red"
Changelog = "https://github.com/secdev/scapy-red/releases"
[tool.setuptools.packages.find]
include = [ "scapyred", "scapyred.completions" ]
[project.scripts]
scapy-dominfo = "scapyred.dominfo:main"
scapy-listips = "scapyred.listips:main"
scapy-ldaphero = "scapyred.ldaphero:main"
scapy-smbclient = "scapyred.smbclient:main"
scapy-smbscan = "scapyred.smbscan:main"
scapy-lsamgr = "scapyred.lsamgr:main"