Commit 9f0e25f7 authored by Robert Bradshaw's avatar Robert Bradshaw

Simple cythonize build_ext.

parent f7de8054
import sys
from .Dependencies import cythonize
if 'setuptools' is sys.modules:
from setuptools.command import build_ext as _build_ext
else:
from distutils.command import build_ext as _build_ext
class build_ext(_build_ext.build_ext):
def finalize_options(self):
self.distribution.ext_modules[:] = cythonize(
self.distribution.ext_modules)
super(build_ext, self).finalize_options()
from .Dependencies import cythonize
from .Distutils import build_ext
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment