forked from moyix/pdbparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1000 Bytes
/
setup.py
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
#!/usr/bin/env python
from distutils.core import setup, Extension
setup(
name = 'pdbparse',
version = '1.4',
description = 'Python parser for Microsoft PDB files',
author = 'Brendan Dolan-Gavitt',
author_email = '[email protected]',
url = 'https://github.com/moyix/pdbparse/',
packages = ['pdbparse'],
install_requires = ['construct>=2.9', 'construct<2.10', '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'])],
include_package_data=True,
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',
])