cython: hello world and primes examples

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2020-02-26 00:00:03 +00:00
parent 6f691eb7d8
commit 9f934c7cd6
7 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize(['*.pyx']),
)