mirror of
https://github.com/ciromattia/kcc
synced 2025-12-16 03:06:33 +00:00
Improved setup_console.py
This commit is contained in:
@@ -8,7 +8,8 @@ import sys
|
|||||||
from cx_Freeze import setup, Executable
|
from cx_Freeze import setup, Executable
|
||||||
sys.path.insert(0, 'kcc')
|
sys.path.insert(0, 'kcc')
|
||||||
|
|
||||||
setup( name = "KindleComicConverter",
|
setup(
|
||||||
|
name = "KindleComicConverter",
|
||||||
version = "2.7",
|
version = "2.7",
|
||||||
author = "Ciro Mattia Gonano",
|
author = "Ciro Mattia Gonano",
|
||||||
author_email = "ciromattia@gmail.com",
|
author_email = "ciromattia@gmail.com",
|
||||||
@@ -16,7 +17,6 @@ setup( name = "KindleComicConverter",
|
|||||||
license= "ISC License (ISCL)",
|
license= "ISC License (ISCL)",
|
||||||
keywords= "kindle comic mobipocket mobi cbz cbr manga",
|
keywords= "kindle comic mobipocket mobi cbz cbr manga",
|
||||||
url = "http://github.com/ciromattia/kcc",
|
url = "http://github.com/ciromattia/kcc",
|
||||||
options = {"build_exe": {}},
|
|
||||||
executables = [Executable("kcc/comic2ebook.py", appendScriptToExe=True, appendScriptToLibrary=False),
|
executables = [Executable("kcc/comic2ebook.py", appendScriptToExe=True, appendScriptToLibrary=False),
|
||||||
Executable("kcc/kindlestrip.py", appendScriptToExe=True, appendScriptToLibrary=False)]
|
Executable("kcc/kindlestrip.py", appendScriptToExe=True, appendScriptToLibrary=False)]
|
||||||
)
|
)
|
||||||
Reference in New Issue
Block a user