Files
python-uncompyle6/setup.py
Ralph Moritz a24d1c6c2c Minor script cleanup.
Fix inconsistencies in uncompyle2 script, rename to scripts/uncompyle2 & add to
setup.py (these are all changes from wibiti). Also, change script headers so
they work on Windows too. Remove build folder from repo & add .gitignore so it
doesn't inadvertently get added again.
2013-06-16 23:42:20 +02:00

16 lines
453 B
Python
Executable File

#! 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'],
scripts=['scripts/uncompyle2']
)