ii-pix/setup.py

10 lines
203 B
Python
Raw Normal View History

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