ii-pix/setup.py

10 lines
203 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)
)