mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
aecd7cb7b5
git-svn-id: http://svn.pyinstaller.org/trunk@649 8dd32b29-ccff-0310-8a9a-9233e24343b1
11 lines
307 B
Python
11 lines
307 B
Python
from hooks import hookutils
|
|
|
|
hiddenimports = ["PyQt4.QtCore", "PyQt4.QtGui", "PyQt4.QtSvg"]
|
|
|
|
if hookutils.qwt_numpy_support():
|
|
hiddenimports.append("numpy")
|
|
if hookutils.qwt_numeric_support():
|
|
hiddenimports.append("Numeric")
|
|
if hookutils.qwt_numarray_support():
|
|
hiddenimports.append("numarray")
|