3 from os
import curdir
, pardir
4 from os
.path
import join
5 from distutils
.core
import setup
6 from distutils
.extension
import Extension
7 from Cython
.Distutils
import build_ext
11 description
= "A frameserver for the 21st century",
12 url
= "http://www.vapoursynth.com/",
13 download_url
= "http://code.google.com/p/vapoursynth/",
14 author
= "Fredrik Mellbin",
15 author_email
= "fredrik.mellbin@gmail.com",
16 license
= "LGPL 2.1 or later",
18 long_description
= "A portable replacement for Avisynth",
20 cmdclass
= {'build_ext': build_ext
},
21 ext_modules
= [Extension("vapoursynth", [join("build", "src", "cython", "vapoursynth.pyx")],
22 libraries
= ["vapoursynth"],
23 library_dirs
= [curdir
, "build"],
24 include_dirs
= [curdir
, join("src", "cython")])]