mirror of
https://github.com/KrisKennaway/ii-pix.git
synced 2024-11-07 22:06:34 +00:00
14 lines
278 B
Python
14 lines
278 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,
|
|
compiler_directives={'language_level': "3"}
|
|
)
|
|
)
|