forked from VimPlug/jedi
7 lines
120 B
Python
7 lines
120 B
Python
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(
|
|
ext_modules=cythonize("compiled.pyx")
|
|
)
|