setup.py

Sun, 20 Jul 2008 21:39:39 -0400

author
Brett Smith <brettcsmith@brettcsmith.org>
date
Sun, 20 Jul 2008 21:39:39 -0400
branch
trunk
changeset 80
df9b3428e28f
parent 74
dd577317bccb
child 89
fc0d6a3fde53
permissions
-rw-r--r--

Move more common extraction/listing functionality into BaseExtractor.

I noticed that a lot of the extract_archive/get_filenames implementations
were the same two lines of code: a pipe and a run_pipes. Short as it is,
there's no reason to keep repeating that two-line incantation, so I moved
this basic pattern into BaseExtractor.

#!/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