ii-pix/setup.py

14 lines
279 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(
2021-03-15 21:41:39 +00:00
ext_modules=cythonize(
["dither.pyx"],
annotate=True,
compiler_directives={'language_level' : "3"}
)
)