From d76ce6c92fc1c7cd74e4b3ebfa3e1e6f83c752b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Fri, 8 Mar 2013 17:27:54 +0100 Subject: [PATCH] Improved setup_console.py --- setup_console.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/setup_console.py b/setup_console.py index 605838f..58001d0 100644 --- a/setup_console.py +++ b/setup_console.py @@ -8,15 +8,15 @@ import sys from cx_Freeze import setup, Executable sys.path.insert(0, 'kcc') -setup( name = "KindleComicConverter", - version = "2.7", - author = "Ciro Mattia Gonano", - author_email = "ciromattia@gmail.com", - description = "A tool to convert comics (CBR/CBZ/PDFs/image folders) to MOBI.", - license= " ISC License (ISCL)", - keywords= "kindle comic mobipocket mobi cbz cbr manga", - url = "http://github.com/ciromattia/kcc", - options = {"build_exe": {}}, - executables = [Executable("kcc/comic2ebook.py", appendScriptToExe=True, appendScriptToLibrary=False), - Executable("kcc/kindlestrip.py", appendScriptToExe=True, appendScriptToLibrary=False)] - ) \ No newline at end of file +setup( + name = "KindleComicConverter", + version = "2.7", + author = "Ciro Mattia Gonano", + author_email = "ciromattia@gmail.com", + description = "A tool to convert comics (CBR/CBZ/PDFs/image folders) to MOBI.", + license= "ISC License (ISCL)", + keywords= "kindle comic mobipocket mobi cbz cbr manga", + url = "http://github.com/ciromattia/kcc", + executables = [Executable("kcc/comic2ebook.py", appendScriptToExe=True, appendScriptToLibrary=False), + Executable("kcc/kindlestrip.py", appendScriptToExe=True, appendScriptToLibrary=False)] +) \ No newline at end of file