You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
15 lines
426 B
Python
Executable File
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']
|
|
)
|