зеркало из https://github.com/mozilla/treeherder.git
7 строки
135 B
Python
7 строки
135 B
Python
|
from distutils.core import setup
|
||
|
from Cython.Build import cythonize
|
||
|
|
||
|
setup(
|
||
|
ext_modules=cythonize("treeherder/log_parser/*.pyx")
|
||
|
)
|