ii-pix/setup.py
2021-03-15 21:41:39 +00:00

14 lines
279 B
Python

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