зеркало из https://github.com/mozilla/treeherder.git
11 строки
335 B
Python
11 строки
335 B
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, you can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(
|
|
ext_modules=cythonize("treeherder/log_parser/*.pyx")
|
|
)
|