ii-pix/setup.py

10 lines
203 B
Python
Raw Permalink Normal View History

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
)