362caaf02f
* Updated the Cython example code slightly, along with the corresponding explanation.
7 lines
137 B
Python
7 lines
137 B
Python
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(
|
|
ext_modules = cythonize("keycount.pyx", annotate=True)
|
|
)
|