Files
python-uncompyle6/setup.py
2012-10-11 16:32:59 +02:00

15 lines
426 B
Python
Executable File

#!/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 = "Mysterie",
author_email = "kajusska@gmail.com",
url = "http://github.com/Mysterie/uncompyle2",
packages=['uncompyle2', 'uncompyle2.opcode']
)