first commit

This commit is contained in:
Mysterie
2012-06-05 10:46:41 +02:00
commit b820316f37
82 changed files with 83963 additions and 0 deletions

15
setup.py Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python
"""Setup script for the 'uncompyle' distribution."""
from distutils.core import setup, Extension
setup (name = "uncompyle2",
version = "1.1",
description = "Python byte-code to source-code converter",
author = "Hartmut Goebel",
author_email = "hartmut@oberon.noris.de",
url = "http://github.com/sysfrog/uncompyle",
packages=['uncompyle2', 'uncompyle2.opcode'],
scripts=['scripts/uncompyle2'],
)