-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1 KB
/
setup.py
File metadata and controls
45 lines (41 loc) · 1 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
"""
SPDX-FileCopyrightText: 2026 Techris93
SPDX-License-Identifier: MIT
Installer metadata for secopsai (editable install for development).
"""
from setuptools import setup, find_packages
setup(
name="secopsai",
version="0.0.0",
description="SecOps AI toolkit",
packages=find_packages(exclude=("tests", "docs")),
py_modules=[
"confidence",
"detect",
"evaluate",
"evaluate_openclaw",
"explain",
"export_real_openclaw_native",
"feedback",
"findings",
"generate_openclaw_attack_mix",
"ingest_openclaw",
"openclaw_findings",
"openclaw_plugin",
"openclaw_prepare",
"prepare",
"run_openclaw_live",
"shadow",
"soc_store",
"swarm",
"tune",
"twilio_whatsapp_webhook",
"whatsapp_openclaw_router",
],
include_package_data=True,
entry_points={
"console_scripts": [
"secopsai=secopsai.cli:main",
],
},
)