summaryrefslogtreecommitdiff
path: root/lang/python/examples/howto/advanced/cython/setup.py
blob: f8dce0346810569be556be27cdbc6ecf4617163c (plain)
1
2
3
4
5
6
from distutils.core import setup
from Cython.Build import cythonize

setup(
    ext_modules = cythonize("keycount.pyx", annotate=True)
)