diff --git a/kcc.py b/kcc.py index 636b428..ce81663 100644 --- a/kcc.py +++ b/kcc.py @@ -32,6 +32,9 @@ # - recurse into dirtree for multiple comics __version__ = '2.0' +__license__ = 'ISC' +__copyright__ = '2012-2013, Ciro Mattia Gonano ' +__docformat__ = 'restructuredtext en' from Tkinter import * from kcc import gui diff --git a/kcc/__init__.py b/kcc/__init__.py index e69de29..9b8fc92 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -0,0 +1,4 @@ +__version__ = '2.0' +__license__ = 'ISC' +__copyright__ = '2012-2013, Ciro Mattia Gonano ' +__docformat__ = 'restructuredtext en' \ No newline at end of file diff --git a/kcc/cbxarchive.py b/kcc/cbxarchive.py index c852bba..6b0e7ea 100644 --- a/kcc/cbxarchive.py +++ b/kcc/cbxarchive.py @@ -14,7 +14,9 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '1.0' +__license__ = 'ISC' +__copyright__ = '2012-2013, Ciro Mattia Gonano ' +__docformat__ = 'restructuredtext en' import os diff --git a/kcc/comic2ebook.py b/kcc/comic2ebook.py index 8d4d428..c3888cc 100755 --- a/kcc/comic2ebook.py +++ b/kcc/comic2ebook.py @@ -35,9 +35,11 @@ # - Add gracefully exit for CBR if no rarfile.py and no unrar # executable are found # - Improve error reporting -# - recurse into dirtree for multiple comics __version__ = '1.50' +__license__ = 'ISC' +__copyright__ = '2012-2013, Ciro Mattia Gonano ' +__docformat__ = 'restructuredtext en' import os import sys @@ -240,7 +242,6 @@ def main(argv=None): if options.imgproc: print "Processing images..." dirImgProcess(path) - print "Creating ePub structure..." genEpubStruct(path) diff --git a/kcc/gui.py b/kcc/gui.py index 4822107..fd79027 100644 --- a/kcc/gui.py +++ b/kcc/gui.py @@ -16,6 +16,10 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. +__license__ = 'ISC' +__copyright__ = '2012-2013, Ciro Mattia Gonano ' +__docformat__ = 'restructuredtext en' + from Tkinter import * import tkFileDialog import ttk diff --git a/kcc/image.py b/kcc/image.py index 9a889a8..b914df9 100755 --- a/kcc/image.py +++ b/kcc/image.py @@ -15,6 +15,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +__license__ = 'ISC' +__copyright__ = '2012-2013, Ciro Mattia Gonano ' +__docformat__ = 'restructuredtext en' + import os from PIL import Image, ImageOps, ImageDraw, ImageStat diff --git a/kcc/pdfjpgextract.py b/kcc/pdfjpgextract.py index 0787100..26925d0 100644 --- a/kcc/pdfjpgextract.py +++ b/kcc/pdfjpgextract.py @@ -17,7 +17,10 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '1.0' + +__license__ = 'ISC' +__copyright__ = '2012-2013, Ciro Mattia Gonano ' +__docformat__ = 'restructuredtext en' import os