about summary refs log tree commit diff
path: root/setup_console.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup_console.py')
-rw-r--r--setup_console.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/setup_console.py b/setup_console.py
deleted file mode 100644
index 40e1763..0000000
--- a/setup_console.py
+++ /dev/null
@@ -1,22 +0,0 @@
-"""
-cx_freeze build script for Windows KCC No-GUI release.
-
-Usage (Windows):
-    python setup_console.py build
-"""
-import sys
-from cx_Freeze import setup, Executable
-sys.path.insert(0, 'kcc')
-
-setup(
-    name = "KindleComicConverter",
-    version = "2.10",
-    author = "Ciro Mattia Gonano",
-    author_email = "[email protected]",
-    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", compress=True, copyDependentFiles=True, appendScriptToExe=True, appendScriptToLibrary=False),
-                   Executable("kcc/kindlestrip.py", compress=True, copyDependentFiles=True, appendScriptToExe=True, appendScriptToLibrary=False)]
-)
\ No newline at end of file