diff options
Diffstat (limited to 'kcc-c2e.py')
| -rw-r--r-- | kcc-c2e.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/kcc-c2e.py b/kcc-c2e.py new file mode 100644 index 0000000..744555b --- /dev/null +++ b/kcc-c2e.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# +# Copyright (c) 2012-2013 Ciro Mattia Gonano <[email protected]> +# Copyright (c) 2013 Pawel Jastrzebski <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. + +__version__ = '4.0' +__license__ = 'ISC' +__copyright__ = '2012-2013, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>' +__docformat__ = 'restructuredtext en' + +import sys +from multiprocessing import freeze_support +from kcc.comic2ebook import main, Copyright + +freeze_support() +Copyright() +main(sys.argv[1:]) +sys.exit(0) \ No newline at end of file |