# -*- coding: utf-8 -*- # creatTime: 2021/5/15 - 9:18 # creator: JustKeepSilence # github: https://github.com/JustKeepSilence # pyVersion: 3.9.2 from distutils.core import setup from Cython.Build import cythonize names = ["pca_test_by_rb"] for name in names: setup( name=name, ext_modules=cythonize(f"{name}.py") )