setup.py

Sun, 20 Jul 2008 21:16:08 -0400

author
Brett Smith <brettcsmith@brettcsmith.org>
date
Sun, 20 Jul 2008 21:16:08 -0400
branch
trunk
changeset 79
9c0cc7aef510
parent 74
dd577317bccb
child 89
fc0d6a3fde53
permissions
-rw-r--r--

Improve dtrx -l performance on misnamed files, and clean other error messages.

dtrx -l would only ever try one extractor, instead of trying all possible
alternaitves like it did when extracting. This is mostly because
get_filenames() reported no meaningful error information. This has been
fixed.

Some error messages have been genericized, since we're not always
extracting archives: we might be listing their contents instead.

#!/usr/bin/env python

from distutils.core import setup

setup(name="dtrx",
      version = "6.1",
      description = "Script to intelligently extract multiple archive types",
      author = "Brett Smith",
      author_email = "brettcsmith@brettcsmith.org",
      url = "http://www.brettcsmith.org/2007/dtrx/",
      scripts = ['scripts/dtrx'],
      license = "GNU General Public License, version 3 or later"
     )

mercurial