Skip to content

Commit c3350ef

Browse files
committed
!
1 parent 312b1ce commit c3350ef

4 files changed

Lines changed: 41 additions & 2 deletions

File tree

openaudit.egg-info/SOURCES.txt

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,44 @@ openaudit.egg-info/dependency_links.txt
1212
openaudit.egg-info/entry_points.txt
1313
openaudit.egg-info/requires.txt
1414
openaudit.egg-info/top_level.txt
15+
openaudit/ai/__init__.py
16+
openaudit/ai/engine.py
17+
openaudit/ai/ethics.py
18+
openaudit/ai/models.py
19+
openaudit/ai/protocol.py
20+
openaudit/core/__init__.py
21+
openaudit/core/config.py
22+
openaudit/core/domain.py
23+
openaudit/core/ignore_manager.py
24+
openaudit/core/interfaces.py
25+
openaudit/core/rules_engine.py
26+
openaudit/features/__init__.py
27+
openaudit/features/architecture/__init__.py
28+
openaudit/features/architecture/agent.py
29+
openaudit/features/architecture/models.py
30+
openaudit/features/architecture/scanner.py
31+
openaudit/features/config/__init__.py
32+
openaudit/features/config/scanner.py
33+
openaudit/features/dataflow/__init__.py
34+
openaudit/features/dataflow/agent.py
35+
openaudit/features/dataflow/models.py
36+
openaudit/features/dataflow/scanner.py
37+
openaudit/features/explain/__init__.py
38+
openaudit/features/explain/agent.py
39+
openaudit/features/secrets/__init__.py
40+
openaudit/features/secrets/agent.py
41+
openaudit/features/secrets/context.py
42+
openaudit/features/secrets/scanner.py
43+
openaudit/features/threat_model/__init__.py
44+
openaudit/features/threat_model/agent.py
45+
openaudit/interface/__init__.py
46+
openaudit/interface/cli/__init__.py
47+
openaudit/interface/cli/app.py
48+
openaudit/interface/cli/commands.py
49+
openaudit/interface/cli/ui.py
50+
openaudit/reporters/base.py
51+
openaudit/reporters/console.py
52+
openaudit/reporters/json_reporter.py
1553
openaudit/rules/config.yaml
1654
openaudit/rules/secrets.yaml
1755
tests/test_config_scanner.py

openaudit/interface/__init__.py

Whitespace-only changes.

openaudit/interface/cli/__init__.py

Whitespace-only changes.

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ dev = [
3636
[project.scripts]
3737
openaudit = "openaudit.main:main"
3838

39-
[tool.setuptools]
40-
packages = ["openaudit"]
39+
[tool.setuptools.packages.find]
40+
where = ["."]
41+
include = ["openaudit*"]
4142

4243
[tool.setuptools.package-data]
4344
openaudit = ["rules/*.yaml"]

0 commit comments

Comments
 (0)