gpgme/lang/python/examples/howto/advanced/cython/setup.py
Ben McGinnes 362caaf02f docs: python bindings
* Updated the Cython example code slightly, along with the
  corresponding explanation.
2018-09-18 08:32:30 +10:00

7 lines
137 B
Python

from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("keycount.pyx", annotate=True)
)