replace OVERRIDE and FINAL with override and final in ash/
[chromium-blink-merge.git] / third_party / v4l2capture / setup.py
blob54d426ee0936a6ff9539a43f9339e999052a4260
1 #!/usr/bin/python
3 # python-v4l2capture
5 # 2009, 2010, 2011 Fredrik Portstrom
7 # I, the copyright holder of this file, hereby release it into the
8 # public domain. This applies worldwide. In case this is not legally
9 # possible: I grant anyone the right to use this work for any
10 # purpose, without any conditions, unless such conditions are
11 # required by law.
13 from distutils.core import Extension, setup
14 setup(
15 name = "v4l2capture",
16 version = "1.4",
17 author = "Fredrik Portstrom",
18 author_email = "fredrik@jemla.se",
19 url = "http://fredrik.jemla.eu/v4l2capture",
20 description = "Capture video with video4linux2",
21 long_description = "python-v4l2capture is a slim and easy to use Python "
22 "extension for capturing video with video4linux2.",
23 license = "Public Domain",
24 classifiers = [
25 "License :: Public Domain",
26 "Programming Language :: C"],
27 ext_modules = [
28 Extension("v4l2capture", ["v4l2capture.c"])])