Fix things on case-insensitive file systems.
[vapoursynth-svn.git] / setup.py
blob950a87b6529db339318a37f6e3b377e35b1795af
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 Cython.Distutils import Extension, build_ext
8 setup(
9 name = "VapourSynth",
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",
16 version = "1.0.0",
17 long_description = "A portable replacement for Avisynth",
18 platforms = "All",
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)]