-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMANIFEST.in
More file actions
45 lines (38 loc) · 1.27 KB
/
MANIFEST.in
File metadata and controls
45 lines (38 loc) · 1.27 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
# Include documentation
include README.md
include LICENSE
include QUICKSTART.md
# Include requirements
include requirements.txt
# Include package data
recursive-include spyhunt *.py
recursive-include spyhunt/payloads *.txt
recursive-include spyhunt/scripts *.sh
recursive-include spyhunt/scripts *.py
recursive-include spyhunt/modules *.py
# Include tools directory
recursive-include spyhunt/tools *.py
include spyhunt/tools/assetfinder
# Include smuggler tool
recursive-include spyhunt/tools/smuggler *.py
recursive-include spyhunt/tools/smuggler/configs *.py
recursive-include spyhunt/tools/smuggler/payloads *
include spyhunt/tools/smuggler/LICENSE
include spyhunt/tools/smuggler/README.md
# Include whatwaf tool
recursive-include spyhunt/tools/whatwaf *.py
recursive-include spyhunt/tools/whatwaf/content *.txt
recursive-include spyhunt/tools/whatwaf/content *.lst
include spyhunt/tools/whatwaf/LICENSE.md
include spyhunt/tools/whatwaf/README.md
include spyhunt/tools/whatwaf/requirements.txt
include spyhunt/tools/whatwaf/bootstrap.sh
include spyhunt/tools/whatwaf/install_helper.sh
include spyhunt/tools/whatwaf/Dockerfile
# Exclude compiled Python files
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .DS_Store
global-exclude *.so
global-exclude .git*