From 7baaa7689f094c5e82f8b6d2d9bd400a7a102728 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Wed, 5 Aug 2015 19:07:42 -0700 Subject: [pkg] remove py2app snippet from setup.py thanks for making our lives easier during all this time, now we're starting a relationship with pyinstaller. maybe our roads cross again in the future. --- setup.py | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1a6a7edf..1e77ccf9 100755 --- a/setup.py +++ b/setup.py @@ -464,31 +464,6 @@ if IS_LINUX: extra_options = {} -if IS_MAC: - extra_options["app"] = ['src/leap/bitmask/app.py'] - OPTIONS = { - 'argv_emulation': True, - 'plist': 'pkg/osx/Info.plist', - 'iconfile': 'pkg/osx/bitmask.icns', - } - extra_options["options"] = {'py2app': OPTIONS} - extra_options["setup_requires"] = ['py2app'] - - class jsonschema_recipe(object): - def check(self, dist, mf): - m = mf.findNode('jsonschema') - if m is None: - return None - - # Don't put jsonschema in the site-packages.zip file - return dict( - packages=['jsonschema'] - ) - - import py2app.recipes - py2app.recipes.jsonschema = jsonschema_recipe() - - setup( name="leap.bitmask", package_dir={"": "src"}, -- cgit v1.2.3