setup.py

Mon, 26 Nov 2007 22:31:25 -0500

author
brett
date
Mon, 26 Nov 2007 22:31:25 -0500
branch
trunk
changeset 41
e3675644bbb6
parent 28
4d88f2231d33
child 42
4a4cab75d5e6
permissions
-rw-r--r--

[svn] Minor clean-ups. The most important of these is that we now have a better
strategy for dealing with the pathological case of having many extraction
destinations taken: after trying various names with number suffixes, we'll
finally resort to mkstemp/mkdtemp to get what we need. This still isn't
guaranteed to work but it's much more reliable. Also print out a warning
for the user when we extract to some weird directory.

#!/usr/bin/env python

from distutils.core import setup

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