mirror of
https://github.com/rasbt/python_reference.git
synced 2025-02-07 00:51:14 +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"])]
|
||
|
)
|