From 9ef2e7737c576793551ceba4f065ed29e8f34103 Mon Sep 17 00:00:00 2001 From: sigvartmh Date: Fri, 12 May 2017 18:01:56 +0200 Subject: [PATCH] add py2app setup --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d469af9 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +""" +This is a setup.py script generated by py2applet + +Usage: + python setup.py py2app +""" +from setuptools import setup + +APP = ['app.py'] +DATA_FILES = [] +OPTIONS = { + 'argv_emulation': True, + 'packages':['idlelib','requests','appJar', 'bs4', "mechanicalsoup","html2text"] +} + +setup( + app=APP, + data_files=DATA_FILES, + options={'py2app': OPTIONS}, + setup_requires=['py2app'], +)