add py2app setup

This commit is contained in:
sigvartmh
2017-05-12 18:01:56 +02:00
parent 024c09a60f
commit 9ef2e7737c

21
setup.py Normal file
View File

@@ -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'],
)