drgn/setup.py
Omar Sandoval b45e930336 dwarf: rewrite drgn.dwarf in pure Python
Now that DwarfIndex is in C, the rest can be simpler Python rather than
Cython.
2018-03-26 01:51:20 -07:00

21 lines
321 B
Python
Executable File

#!/usr/bin/env python3
from setuptools import setup
from setuptools.extension import Extension
from Cython.Build import cythonize
extensions = [
Extension(
name='drgn.dwarfindex',
sources=[
'drgn/dwarfindex.c',
],
),
]
setup(
name='drgn',
ext_modules=extensions,
)