ii-pix/setup.py

10 lines
209 B
Python
Raw Normal View History

2021-01-12 00:27:03 +00:00
from setuptools import setup
from Cython.Build import cythonize
import Cython.Compiler.Options
Cython.Compiler.Options.annotate = True
setup(
ext_modules=cythonize(["dither_apply.pyx"], annotate=True)
)