mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-27 07:00:42 +00:00
16 lines
453 B
Python
Executable File
16 lines
453 B
Python
Executable File
#! python
|
|
|
|
"""Setup script for the 'uncompyle' distribution."""
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
setup (name = "uncompyle6",
|
|
version = "2.0",
|
|
description = "Python byte-code to source-code converter",
|
|
author = "Mysterie",
|
|
author_email = "kajusska@gmail.com",
|
|
url = "http://github.com/Mysterie/uncompyle2",
|
|
packages=['uncompyle6', 'uncompyle6.opcode'],
|
|
scripts=['scripts/uncompyle6']
|
|
)
|