-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
27 lines (23 loc) · 834 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
setup(
name='v4l2',
version='0.2',
license='GPLv2',
requires=('ctypes',),
py_modules=('v4l2',),
maintainer='python-v4l2-devel',
maintainer_email='https://launchpad.net/~python-v4l2-devel/+contactuser',
url='http://pypi.python.org/pypi/v4l2',
keywords='v4l2 video4linux video4linux2 binding ctypes',
description='Python bindings for the v4l2 userspace api.',
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX :: Linux',
'Programming Language :: C',
'Programming Language :: Python',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Capture',
),
)