blob: 9d6e4624ef998075771513c3242d28f0f9a3bb42 (
plain)
1
2
3
4
5
6
|
from setuptools import Extension
from Cython.Build import cythonize
from Cython.Compiler import Options
Options.embed = True
alabaster_inc = '../../../subprojects/libalabaster/include'
cythonize([Extension('portal', ['./portal.pyx'], include_dirs=[alabaster_inc], extra_link_args=[], define_macros=[('AL_LOG_SECTION', 'portal')])], language_level=3)
|