setup.py

Sun, 20 Jan 2008 03:53:02 -0500

author
brett
date
Sun, 20 Jan 2008 03:53:02 -0500
branch
trunk
changeset 48
0a0eeeb5b97d
parent 45
37d555407334
child 74
dd577317bccb
permissions
-rw-r--r--

[svn] Handle SIGINT and SIGKILL.

This prevents us from spewing a traceback. We also make one last-ditch
effort to clean up any temporary stuff so it doesn't hog the user's disk.

Also made some aesthetic changes: replace the last instance of run-command
with shutil.rmtree, so the whole function's gone now. Also call it set
instead of Set.

#!/usr/bin/env python

from distutils.core import setup

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