d93fed567c
This uses a feature introduced in PyInstaller 4.0 to register hooks as entry points and automatically discover them whenever a module is used.
6 lines
143 B
Python
6 lines
143 B
Python
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2020 Tobias Gruetzmacher
|
|
import os
|
|
|
|
def get_hook_dirs():
|
|
return [os.path.dirname(__file__)]
|