deploy-ng: Add libpython to list of libs to copy

This commit is contained in:
Mitchell Stokes 2017-01-10 18:44:13 -08:00
parent 3347a6e2cb
commit 83c6f033e1

View File

@ -41,7 +41,14 @@ def find_packages(whlfile):
else: else:
filelist = whlfile.namelist() filelist = whlfile.namelist()
return [i for i in filelist if '.so.' in i or i.endswith('.dll') or i.endswith('.dylib') or 'libpandagl' in i] return [
i for i in filelist
if '.so.' in i or
i.endswith('.dll') or
i.endswith('.dylib') or
'libpandagl' in i or
'libpython' in i
]
class build(distutils.command.build.build): class build(distutils.command.build.build):