python: another fix for cython

_v3_old
Nguyen Anh Quynh 11 years ago
parent 4c259d4836
commit 821247001b
  1. 1
      bindings/python/Makefile
  2. 1
      bindings/python/setup_cython.py

@ -7,6 +7,7 @@ install:
python setup.py install
install_cython:
# Newer cython is needed: sudo pip install --upgrade cython
python setup_cython.py install
clean:

@ -20,6 +20,7 @@ ext_modules = [ Extension("capstone.capstone", ["capstone/capstone.py"]),
setup(
provides = ['capstone'],
name = 'capstone',
package_data = {'capstone': ['__init__.py']},
version = VERSION,
cmdclass = {'build_ext': build_ext},
ext_modules = ext_modules,

Loading…
Cancel
Save