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.
9 lines
370 B
9 lines
370 B
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"])) |