block Core() class constructor
[vapoursynth-svn.git] / setup.py
blobcee441044896abebd5f59d6070fab094c6563571
1 #!/usr/bin/env python3
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
9 setup(
10 name = "VapourSynth",
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",
17 version = "1.0.0",
18 long_description = "A portable replacement for Avisynth",
19 platforms = "All",
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")])]