forked from moyix/pdbparse
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 995 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 995 Bytes
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
#!/usr/bin/env python
from distutils.core import setup, Extension
setup(
name="pdbparse",
version="1.5.1",
description="Python parser for Microsoft PDB files",
author="Brendan Dolan-Gavitt",
author_email="brendandg@gatech.edu",
url="https://github.com/moyix/pdbparse/",
packages=["pdbparse"],
install_requires=["construct>=2.10", "construct<2.11", "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",
],
)