ii-sound/setup.py

13 lines
280 B
Python
Raw Normal View History

2022-07-03 22:10:43 +00:00
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"}
)
)