8 lines
248 B
Python
8 lines
248 B
Python
from PyInstaller.utils.hooks import collect_all
|
|
|
|
# Collect all package data, binaries and hidden imports from pygount
|
|
datas, binaries, hiddenimports = collect_all('pygount')
|
|
|
|
# Export to PyInstaller
|
|
__all__ = ['datas', 'binaries', 'hiddenimports']
|