5 lines
136 B
Python
5 lines
136 B
Python
|
from distutils.core import setup
|
||
|
from Cython.Build import cythonize
|
||
|
|
||
|
setup(name='kronecker',
|
||
|
ext_modules=cythonize("cythkrn.pyx"))
|