diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..04123a2 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,95 @@ +# file GENERATED by distutils, do NOT edit +README.txt +comictagger.py +readme.txt +release_notes.txt +setup.py +comictaggerlib/__init__.py +comictaggerlib/autotagmatchwindow.py +comictaggerlib/autotagprogresswindow.py +comictaggerlib/autotagstartwindow.py +comictaggerlib/cbltransformer.py +comictaggerlib/cli.py +comictaggerlib/comet.py +comictaggerlib/comicarchive.py +comictaggerlib/comicbookinfo.py +comictaggerlib/comicinfoxml.py +comictaggerlib/comicvinecacher.py +comictaggerlib/comicvinetalker.py +comictaggerlib/coverimagewidget.py +comictaggerlib/crediteditorwindow.py +comictaggerlib/ctversion.py +comictaggerlib/exportwindow.py +comictaggerlib/filenameparser.py +comictaggerlib/filerenamer.py +comictaggerlib/fileselectionlist.py +comictaggerlib/genericmetadata.py +comictaggerlib/imagefetcher.py +comictaggerlib/imagehasher.py +comictaggerlib/imagepopup.py +comictaggerlib/issueidentifier.py +comictaggerlib/issueselectionwindow.py +comictaggerlib/issuestring.py +comictaggerlib/logwindow.py +comictaggerlib/main.py +comictaggerlib/matchselectionwindow.py +comictaggerlib/optionalmsgdialog.py +comictaggerlib/options.py +comictaggerlib/pagebrowser.py +comictaggerlib/pagelisteditor.py +comictaggerlib/pageloader.py +comictaggerlib/progresswindow.py +comictaggerlib/renamewindow.py +comictaggerlib/settings.py +comictaggerlib/settingswindow.py +comictaggerlib/taggerwindow.py +comictaggerlib/utils.py +comictaggerlib/volumeselectionwindow.py +comictaggerlib/UnRAR2/__init__.py +comictaggerlib/UnRAR2/rar_exceptions.py +comictaggerlib/UnRAR2/test_UnRAR2.py +comictaggerlib/UnRAR2/unix.py +comictaggerlib/UnRAR2/windows.py +comictaggerlib/UnRAR2/UnRARDLL/license.txt +comictaggerlib/UnRAR2/UnRARDLL/unrar.dll +comictaggerlib/UnRAR2/UnRARDLL/unrar.h +comictaggerlib/UnRAR2/UnRARDLL/unrar.lib +comictaggerlib/UnRAR2/UnRARDLL/unrardll.txt +comictaggerlib/UnRAR2/UnRARDLL/whatsnew.txt +comictaggerlib/UnRAR2/UnRARDLL/x64/readme.txt +comictaggerlib/UnRAR2/UnRARDLL/x64/unrar64.dll +comictaggerlib/UnRAR2/UnRARDLL/x64/unrar64.lib +comictaggerlib/graphics/about.png +comictaggerlib/graphics/app.png +comictaggerlib/graphics/auto.png +comictaggerlib/graphics/autotag.png +comictaggerlib/graphics/browse.png +comictaggerlib/graphics/clear.png +comictaggerlib/graphics/left.png +comictaggerlib/graphics/longbox.png +comictaggerlib/graphics/nocover.png +comictaggerlib/graphics/open.png +comictaggerlib/graphics/parse.png +comictaggerlib/graphics/popup_bg.png +comictaggerlib/graphics/right.png +comictaggerlib/graphics/save.png +comictaggerlib/graphics/search.png +comictaggerlib/graphics/tags.png +comictaggerlib/ui/autotagmatchwindow.ui +comictaggerlib/ui/autotagprogresswindow.ui +comictaggerlib/ui/autotagstartwindow.ui +comictaggerlib/ui/coverimagewidget.ui +comictaggerlib/ui/crediteditorwindow.ui +comictaggerlib/ui/exportwindow.ui +comictaggerlib/ui/fileselectionlist.ui +comictaggerlib/ui/imagepopup.ui +comictaggerlib/ui/issueselectionwindow.ui +comictaggerlib/ui/logwindow.ui +comictaggerlib/ui/matchselectionwindow.ui +comictaggerlib/ui/pagebrowser.ui +comictaggerlib/ui/pagelisteditor.ui +comictaggerlib/ui/progresswindow.ui +comictaggerlib/ui/renamewindow.ui +comictaggerlib/ui/settingswindow.ui +comictaggerlib/ui/taggerwindow.ui +comictaggerlib/ui/volumeselectionwindow.ui diff --git a/Makefile b/Makefile index dd0108a..d1ba743 100644 --- a/Makefile +++ b/Makefile @@ -8,11 +8,11 @@ all: clean clean: rm -rf *~ *.pyc *.pyo cd comictagger; rm -f *~ *.pyc *.pyo - sudo rm -rf MANIFEST dist scripts + sudo rm -rf dist MANIFEST + rm -rf *.deb rm -rf logdict*.log make -C mac clean make -C windows clean - rm -rf *.deb zip: cd release; \ @@ -38,7 +38,7 @@ deb: --maintainer 'comictagger@gmail.com' \ --after-install debian_scripts/after_install.sh \ --before-remove debian_scripts/before_remove.sh \ - -d 'python >= 2.7' \ + -d 'python >= 2.6' \ -d 'python < 2.8' \ -d 'python-imaging >= 1.1.7' \ -d 'python-bs4 >= 4.1' \ diff --git a/comictaggerlib/options.py b/comictaggerlib/options.py index 929b778..db980f1 100644 --- a/comictaggerlib/options.py +++ b/comictaggerlib/options.py @@ -86,7 +86,9 @@ If no options are given, {0} will run in windowed mode -v, --verbose Be noisy when doing what it does --terse Don't say much (for print mode) --version Display version - -h, --help Display this message + -h, --help Display this message + +For more help visit the wiki at: http://code.google.com/p/comictagger/ """ diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..a5cbd1c --- /dev/null +++ b/readme.txt @@ -0,0 +1,15 @@ +ComicTagger is a multi-platform app for writing metadata to comic archives, written in Python and PyQt. + +Features: + +* Runs on Mac OSX, Microsoft Windows, and Linux systems +* Communicates with an online database (Comic Vine) for acquiring metadata +* Uses image processing to automatically match a given archive with the correct issue data +* Batch processing in the GUI for tagging hundreds or more comics at a time +* Reads and writes multiple tagging schemes ( ComicBookLover and ComicRack, with more planned). +* Reads and writes RAR, Zip, and folder archives (external tools needed for writing RAR) +* Command line interface (CLI) on all platforms (including Windows), which supports batch operations, and which can be used in native scripts for complex operations. For example, to scrape and tag a folder, just one line + ComicTagger -s -o -f -t cr -v -i --nooverwrite *.cb? + +For details, screenshots, release notes, and more, visit http://code.google.com/p/comictagger/ +