Skip to content

Commit

Permalink
add a pyinstaller hook for yara
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Ligh committed Oct 15, 2015
1 parent a2ab9d8 commit f708124
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pyinstaller/hook-yara.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import os
import sys

datas = []

for path in sys.path:
datas.append(("yara.pyd", ""))
datas.append(("yara.so", ""))

0 comments on commit f708124

Please sign in to comment.