setup.py

Fri, 23 Nov 2007 11:24:58 -0500

author
brett
date
Fri, 23 Nov 2007 11:24:58 -0500
branch
trunk
changeset 35
957b402d4b90
parent 28
4d88f2231d33
child 42
4a4cab75d5e6
permissions
-rw-r--r--

[svn] Add support for extracting CAB archives. Because the CAB archive I was
testing on had a single file in it, I fonud a bunch of bugs related to
extracting one file (as opposed to one directory) here, and squashed those
in the process.

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