setup.py

Wed, 23 Jul 2008 12:01:58 -0400

author
Brett Smith <brettcsmith@brettcsmith.org>
date
Wed, 23 Jul 2008 12:01:58 -0400
branch
trunk
changeset 82
6db35db38795
parent 74
dd577317bccb
child 89
fc0d6a3fde53
permissions
-rw-r--r--

Stop worrying about trailing newlines in get_filenames() overrides.

Now that all the get_filenames implementations call out to the original,
which takes care of the trailing newline, we don't need to keep doing it in
other methods.

#!/usr/bin/env python

from distutils.core import setup

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