You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
408 B

4 months ago
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