1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-14 18:26:33 +00:00

Improved setup_console.py

This commit is contained in:
Paweł Jastrzębski
2013-03-08 17:27:54 +01:00
parent b6fa993c17
commit d76ce6c92f

View File

@@ -8,15 +8,15 @@ 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(
version = "2.7", name = "KindleComicConverter",
author = "Ciro Mattia Gonano", version = "2.7",
author_email = "ciromattia@gmail.com", author = "Ciro Mattia Gonano",
description = "A tool to convert comics (CBR/CBZ/PDFs/image folders) to MOBI.", author_email = "ciromattia@gmail.com",
license= " ISC License (ISCL)", description = "A tool to convert comics (CBR/CBZ/PDFs/image folders) to MOBI.",
keywords= "kindle comic mobipocket mobi cbz cbr manga", license= "ISC License (ISCL)",
url = "http://github.com/ciromattia/kcc", keywords= "kindle comic mobipocket mobi cbz cbr manga",
options = {"build_exe": {}}, url = "http://github.com/ciromattia/kcc",
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)]
) )