Use stdlib.h instead of malloc.h.
[vapoursynth-svn.git] / setup.py
blob55621d13511c0a0d8251125a2bd82821147ed23f
1 #!/usr/bin/env python3
3 from distutils.core import setup
4 from distutils.extension import Extension
5 from Cython.Distutils import build_ext
7 setup(
8 cmdclass = {'build_ext': build_ext},
9 ext_modules = [Extension("vapoursynth", ["src/cython/vapoursynth.pyx"])]