-
Notifications
You must be signed in to change notification settings - Fork 14
/
cookiecutter.json
24 lines (18 loc) · 970 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"protocol_name": "AIM",
"L4_protocol": ["TCP", "UDP", "None (Warning: might not work)"],
"project_name": "{{ cookiecutter.protocol_name }} Protocol Analyzer",
"project_slug": "{{ cookiecutter.protocol_name.lower().replace(' ', '_').replace('-', '_') }}_analyzer",
"project_short_description": "{{ cookiecutter.project_name }} for Zeek",
"project_credits": "Alice <[email protected]>, Bob <[email protected]>",
"project_namespace": "Local",
"zeek_version": "Automatically determined from the installed version, or '3.2' if zeek-config not found",
"metadata_tags": "network, evil, rfc3514",
"github_username": "alice",
"copyright_owner": "Veridian Technologies",
"open_source_license": ["BSD license", "MIT license", "ISC license", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"],
"_copy_without_render": [
"docs/_templates/*.html",
".github/workflows/*.yml"
]
}