aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/examples/howto/advanced/cython/setup.py
blob: 849639e2c7a76e43ef68f67abe8c9fe9d12daf6b (plain)
1
2
3
4
5
6
from setuptools import setup
from Cython.Build import cythonize

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