mirror of
https://github.com/rasbt/python_reference.git
synced 2024-12-19 00:30:19 +00:00
9 lines
245 B
Python
9 lines
245 B
Python
|
|
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("ccy_classic_lstsqr", ["ccy_classic_lstsqr.pyx"])]
|
|
) |