File: setup.py

package info (click to toggle)
decompyle 2.3.2-4.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,324 kB
  • ctags: 66,233
  • sloc: python: 70,351; ansic: 2,329; makefile: 43; sh: 14
file content (27 lines) | stat: -rwxr-xr-x 1,054 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python

"""Setup script for the 'decompyle' distribution."""

____revision__ = "$Id: setup.py,v 1.1.1.1 2004/12/14 12:29:31 dan Exp $"

from distutils.core import setup, Extension

setup (name = "decompyle",
       version = "2.3",
       description = "Python byte-code to source-code converter",
       author = "Hartmut Goebel",
       author_email = "hartmut@oberon.noris.de",
       url = "http://www.goebel-consult.de/decompyle/",
       packages=['decompyle'],
       scripts=['scripts/decompyle'],
       ext_modules = [Extension('decompyle/marshal_20',
                                ['decompyle/marshal_20.c'],
                                define_macros=[]),
                      Extension('decompyle/marshal_22',
                                ['decompyle/marshal_22.c'],
                                define_macros=[]),
                      Extension('decompyle/marshal_23',
                                ['decompyle/marshal_23.c'],
                                define_macros=[]),
                      ]
      )