Skip to content

Commit

Permalink
Declare all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gmacon committed Dec 1, 2023
1 parent fbe0440 commit 10d84c3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
- binja: improve function call site detection @xusheng6
- binja: use `binaryninja.load` to open files @xusheng6
- binja: bump binja version to 3.5 #1789 @xusheng6
- packaging: explicitly list all importable packages in `pyproject.toml` #1886 @gmacon

### capa explorer IDA Pro plugin

Expand Down
20 changes: 19 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,25 @@ dynamic = ["version"]
version = {attr = "capa.version.__version__"}

[tool.setuptools]
packages = ["capa"]
packages = [
"capa",
"capa.capabilities",
"capa.features",
"capa.features.freeze",
"capa.features.extractors",
"capa.features.extractors.viv",
"capa.features.extractors.dnfile",
"capa.features.extractors.ida",
"capa.features.extractors.binja",
"capa.features.extractors.ghidra",
"capa.features.extractors.cape",
"capa.render",
"capa.render.proto",
"capa.ida",
"capa.ida.plugin",
"capa.rules",
"capa.ghidra",
]

[project.optional-dependencies]
dev = [
Expand Down

0 comments on commit 10d84c3

Please sign in to comment.