setup.py

Sun, 29 Oct 2006 20:03:12 -0500

author
brett
date
Sun, 29 Oct 2006 20:03:12 -0500
branch
trunk
changeset 2
1570351bf863
parent 1
a86a0cb0dd57
child 11
a2ca41a85243
permissions
-rw-r--r--

[svn] Fix a small bug that would crash the program if an archive was empty.

Make basename calculation more robust.

Go ahead and run .exe files through the ZipExtractor. Need to cope more
gracefully when it doesn't work, but I've lost momentum for tonight.

#!/usr/bin/env python

from distutils.core import setup

setup(name="x",
      version = "1.0",
      description = "Script to intelligently extract multiple archive types",
      author = "Brett Smith",
      author_email = "brettcsmith@brettcsmith.org",
      url = "http://www.brettcsmith.org/2006/x",
      scripts = ['scripts/x'],
     )

mercurial