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(
|
2021-01-15 22:20:28 +00:00
|
|
|
ext_modules=cythonize(["dither.pyx"], annotate=True)
|
2021-01-12 00:27:03 +00:00
|
|
|
)
|