mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
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")
|
|
)
|