Merge pull request #338 from lbryio/zipsafe-or-bust

Fix the Build
This commit is contained in:
Jack Robison 2016-12-14 22:04:58 -05:00 committed by GitHub
commit ab78b7f5fa

View file

@ -113,7 +113,11 @@ elif platform == DARWIN:
entry_points={'console_scripts': console_scripts},
package_data={
package_name: list(package_files('lbrynet/resources/ui'))
}
},
# If this is True, setuptools tries to build an egg
# and py2app / modulegraph / imp.find_module
# doesn't like that.
zip_safe=False,
)
elif platform == WINDOWS: