mirror of
https://github.com/ciromattia/kcc
synced 2025-12-13 01:36:27 +00:00
Depending on Pillow
This commit is contained in:
0
dist/test_app.app/Contents/Info.plist.patch
vendored
Normal file
0
dist/test_app.app/Contents/Info.plist.patch
vendored
Normal file
10
setup.py
10
setup.py
@@ -15,12 +15,12 @@ VERSION = "3.0"
|
||||
MAIN = "kcc.py"
|
||||
|
||||
includefiles = ['LICENSE.txt']
|
||||
includes = []
|
||||
excludes = []
|
||||
includes = ['sip', 'atexit', 'PyQt4.QtCore']
|
||||
excludes = ['curses', 'email', 'tcl', 'ttk']
|
||||
|
||||
if platform == "darwin":
|
||||
extra_options = dict(
|
||||
options={"build_exe": {"include_files": includefiles, "excludes": excludes, "compressed": True},
|
||||
options={"build_exe": {"include_files": includefiles, "includes": includes, "excludes": excludes, "compressed": True},
|
||||
"bdist_mac": {"iconfile": "icons/comic2ebook.icns"}},
|
||||
executables=[Executable(MAIN,
|
||||
copyDependentFiles=True,
|
||||
@@ -30,7 +30,7 @@ if platform == "darwin":
|
||||
elif platform == "win32":
|
||||
base = "Win32GUI"
|
||||
extra_options = dict(
|
||||
options={"build_exe": {"include_files": includefiles, "excludes": excludes, "compressed": True}},
|
||||
options={"build_exe": {"include_files": includefiles, "includes": includes, "excludes": excludes, "compressed": True}},
|
||||
executables=[Executable(MAIN,
|
||||
base=base,
|
||||
targetName="KCC.exe",
|
||||
@@ -51,6 +51,6 @@ setup(
|
||||
license="ISC License (ISCL)",
|
||||
keywords="kindle comic mobipocket mobi cbz cbr manga",
|
||||
url="http://github.com/ciromattia/kcc",
|
||||
packages=['KCC'], requires=['PIL'],
|
||||
packages=['KCC'], requires=['Pillow'],
|
||||
**extra_options
|
||||
)
|
||||
Reference in New Issue
Block a user