ii-sound/setup.py

13 lines
280 B
Python

from setuptools import setup
from Cython.Build import cythonize
import Cython.Compiler.Options
Cython.Compiler.Options.annotate = True
setup(
ext_modules=cythonize(
["lookahead.pyx"],
annotate=True,
compiler_directives={'language_level': "3"}
)
)