setup.py

Thu, 22 Nov 2007 22:20:39 -0500

author
brett
date
Thu, 22 Nov 2007 22:20:39 -0500
branch
trunk
changeset 31
c3a2760d1c3a
parent 28
4d88f2231d33
child 42
4a4cab75d5e6
permissions
-rw-r--r--

[svn] Refactor actions (extract the archive, vs. list the contents) into their
own classes, instead of having all that in the Application class. Also did
some similar fidgeting with the ExtractorBuilder. I like this better.
It's still not the cleanest API but things feel more manageable now.

Add 7z support.

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