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.
21 lines
346 B
21 lines
346 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
|
||
|
|
||
|
names = ["pca_test_by_rb"]
|
||
|
for name in names:
|
||
|
setup(
|
||
|
name=name,
|
||
|
ext_modules=cythonize(f"{name}.py")
|
||
|
)
|
||
|
|
||
|
|
||
|
|
||
|
|