You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
16 lines
475 B
Python
Executable File
16 lines
475 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 = "Hartmut Goebel",
|
|
author_email = "hartmut@oberon.noris.de",
|
|
url = "http://github.com/sysfrog/uncompyle",
|
|
packages=['uncompyle2', 'uncompyle2.opcode'],
|
|
scripts=['scripts/uncompyle2'],
|
|
)
|