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.
17 lines
299 B
17 lines
299 B
2 weeks ago
|
# -*- 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")
|
||
|
)
|
||
|
|
||
|
|