mirror of
https://github.com/KrisKennaway/ii-pix.git
synced 2024-11-07 22:06:34 +00:00
551be3eba7
Back out the pixel_palette_options WIP to make this mergable
10 lines
203 B
Python
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)
|
|
)
|