OLD | NEW |
(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"])]) |
OLD | NEW |