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
13 from distutils
.core
import Extension
, setup
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",
25 "License :: Public Domain",
26 "Programming Language :: C"],
28 Extension("v4l2capture", ["v4l2capture.c"])])