mirror of
https://github.com/KevinMidboe/ITLscraper.git
synced 2025-10-29 17:50:14 +00:00
22 lines
403 B
Python
22 lines
403 B
Python
"""
|
|
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'],
|
|
)
|