forked from moyix/pdbparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.03 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.03 KB
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
28
29
30
31
32
33
#!/usr/bin/env python
from distutils.core import setup, Extension
setup(name='pdbparse',
version='1.1',
description='Python parser for Microsoft PDB files',
author='Brendan Dolan-Gavitt',
author_email='brendandg@gatech.edu',
url='http://pdbparse.googlecode.com/',
packages=['pdbparse'],
install_requires = [
'construct<=2.5.2', # last known release from https://github.com/tomerfiliba
'pefile'
],
classifiers=[
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
],
ext_modules=[
Extension('pdbparse._undname', sources = ['src/undname.c', 'src/undname_py.c'])
],
scripts=[
'examples/pdb_dump.py',
'examples/pdb_get_syscall_table.py',
'examples/pdb_lookup.py',
'examples/pdb_print_ctypes.py',
'examples/pdb_print_gvars.py',
'examples/pdb_print_tpi.py',
'examples/pdb_tpi_vtypes.py',
'examples/symchk.py',
]
)