kindle manager

This commit is contained in:
gavin
2020-07-06 16:24:15 +08:00
parent f04ee3dacd
commit 90e0ecd664
3 changed files with 27 additions and 44 deletions

View File

@@ -1,19 +1,21 @@
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['kmanapp.py']
DATA_FILES = []
OPTIONS = {}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['kmanapp.py']
DATA_FILES = ['kman.py', 'kmanapp.py', 'kmanapp_rc.py', 'mainwindow.py', 'parseweb.py', 'unitest.kman.py']
OPTIONS = {'includes':['PySide2', 'pandas', 'requests',],
'iconfile':'/Users/mark/kman/kmanapp.ico'}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)