Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Side by Side Diff: third_party/v4l2capture/setup.py

Issue 123743004: Add v4l2capture to support webcam-based speed index in telemetry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add pauljensen to OWNERS Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/v4l2capture/README.chromium ('k') | third_party/v4l2capture/v4l2capture.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/python
2 #
3 # python-v4l2capture
4 #
5 # 2009, 2010, 2011 Fredrik Portstrom
6 #
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.
12
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"])])
OLDNEW
« no previous file with comments | « third_party/v4l2capture/README.chromium ('k') | third_party/v4l2capture/v4l2capture.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698