kindle manager

This commit is contained in:
douboer
2020-06-30 12:06:07 +08:00
parent 6aed9982f6
commit 338e83ab25
27 changed files with 82164 additions and 77 deletions

19
setup.py Normal file
View File

@@ -0,0 +1,19 @@
"""
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'],
)