blob: d14068f6a4756b6726fd36c288498c02b96f1eb4 (
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)
|