from distutils.core import setup from Cython.Build import cythonize setup(ext_modules=cythonize(["../measure_lib.py"])) setup(ext_modules=cythonize(["../calc_way.py"])) setup(ext_modules=cythonize(["../calc_slope_line.py"])) setup(ext_modules=cythonize(["../get_data.py"])) setup(ext_modules=cythonize(["../model.py"])) setup(ext_modules=cythonize(["../main_test.py"])) #python setup.py build_ext --inplace