From 384fc314012f36c55508e2e1be6f627ecd307119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Tue, 2 Feb 2021 23:53:35 +0100 Subject: [PATCH] Declare that we are not zip-safe As this doesn't work on Android. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bb652e3..fcf54d6 100755 --- a/setup.py +++ b/setup.py @@ -162,7 +162,6 @@ setup( author_email="oleavr@frida.re", url="https://frida.re", license="wxWindows Library Licence, Version 3.1", - zip_safe=True, keywords="frida debugger dynamic instrumentation inject javascript windows macos linux ios iphone ipad android qnx", classifiers=[ "Development Status :: 5 - Production/Stable", @@ -193,5 +192,6 @@ setup( ext_modules=[Extension('_frida', [])], cmdclass={ 'build_ext': FridaPrebuiltExt - } + }, + zip_safe=False )