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

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