7 lines
140 B
Python
7 lines
140 B
Python
|
from distutils.core import setup
|
||
|
from Cython.Build import cythonize
|
||
|
|
||
|
setup(
|
||
|
name = 'cython test',
|
||
|
ext_modules = cythonize("test.pyx"),
|
||
|
)
|