Skip to content
Snippets Groups Projects
Commit ff80c13e authored by Holger's avatar Holger
Browse files

Fix beempy pyinstaller script

parent 17d05771
Branches
Tags
No related merge requests found
......@@ -5,13 +5,14 @@ import glob
import platform
from PyInstaller.utils.hooks import exec_statement
import websocket
import certifi
from os.path import join, dirname, basename
block_cipher = None
os_name = platform.system()
binaries = []
websocket_lib_path = dirname(websocket.__file__)
websocket_lib_path = dirname(certifi.__file__)
websocket_cacert_file_path = join(websocket_lib_path, 'cacert.pem')
analysis_data = [
# For websocket library to find "cacert.pem" file, it must be in websocket
......
......@@ -5,13 +5,14 @@ import glob
import platform
from PyInstaller.utils.hooks import exec_statement
import websocket
import certifi
from os.path import join, dirname, basename
block_cipher = None
os_name = platform.system()
binaries = []
websocket_lib_path = dirname(websocket.__file__)
websocket_lib_path = dirname(certifi.__file__)
websocket_cacert_file_path = join(websocket_lib_path, 'cacert.pem')
analysis_data = [
# For websocket library to find "cacert.pem" file, it must be in websocket
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment