gpgme/lang/python/examples/howto/advanced/cython/setup.py

7 lines
133 B
Python
Raw Normal View History

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