setup.py

Sun, 20 Jan 2008 01:59:42 -0500

author
brett
date
Sun, 20 Jan 2008 01:59:42 -0500
branch
trunk
changeset 47
b034b6b4227d
parent 45
37d555407334
child 74
dd577317bccb
permissions
-rw-r--r--

[svn] Fix various bugs in the recursive extraction.

First, 5.0 introduced a regression where it wouldn't find archives hidden
in subdirectories. So fix that.

Then recursive extraction would get confused if the archive was a ONE_ENTRY
and we decided to wrap it or just extract it here. Fix that too: the
extractor keeps track of where it thinks it's extracting to, and then the
handler will change that if necessary.

There are unit tests for all this.

I twiddled some other small thing while I was at it but now I forget what.

#!/usr/bin/env python

from distutils.core import setup

setup(name="dtrx",
      version = "6.0",
      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