# -*- 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 setup( name="pca_train_off", ext_modules=cythonize("pca_train_off.py") )