setup.py

Sun, 29 Apr 2007 15:12:02 -0400

author
brett
date
Sun, 29 Apr 2007 15:12:02 -0400
branch
trunk
changeset 25
ef62f2f55eb8
parent 19
bb6e9f4af1a5
child 28
4d88f2231d33
permissions
-rw-r--r--

[svn] Move policy-handling code into a dedicated set of classes. This makes
question construction at least moderately cleaner, and more importantly, it
gets it out of the main application class, where it was bugging me.

#!/usr/bin/env python

from distutils.core import setup

setup(name="dtrx",
      version = "4.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 2 or later"
     )

mercurial