You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
first commit
This commit is contained in:
15
setup.py
Executable file
15
setup.py
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/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'],
|
||||
)
|
Reference in New Issue
Block a user