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