|
@@ -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):
|