-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (34 loc) · 1.04 KB
/
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
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# flake8: noqa
try:
from setuptools import setup
except ImportError:
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup
setup(
name='pyvidctrl',
version='1.0.1',
author='Antmicro Ltd',
description="Simple TUI to control V4L2 cameras",
author_email='[email protected]',
url='https://github.com/antmicro/pyvidctrl',
license='Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)',
packages=['pyvidctrl'],
entry_points={
'console_scripts': [
'pyvidctrl = pyvidctrl.__main__:main',
]},
install_requires=[
'v4l2 @ git+https://github.com/antmicro/python3-v4l2',
],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
)