kindle manager

This commit is contained in:
gavin
2020-06-23 14:38:36 +08:00
parent 91c950eeb1
commit d7672d9380
26 changed files with 11011 additions and 24 deletions

21
setup.py.bk 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 = ['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'],
)