setup.py
5 lines
| 232 B
| text/x-python
|
PythonLexer
|
r301 | from distutils.core import setup | |
from distutils.extension import Extension | |||
from Cython.Distutils import build_ext | |||
setup( | |||
cmdclass = {'build_ext': build_ext}, | |||
ext_modules = [Extension("cfunctions", ["cfunctions.pyx"])] ) |