forked from tiagocoutinho/v4l2py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (40 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
#
# This file is part of the v4l2py project
#
# Copyright (c) 2021 Tiago Coutinho
# Distributed under the GPLv3 license. See LICENSE for more info.
"""The setup script."""
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
setup(
name="v4l2py",
version="0.6.1",
author="Jose Tiago Macara Coutinho",
author_email="[email protected]",
license="GPLv3",
keywords="v4l2, video4linux, video4linux2, human",
description="Human friendly video for linux",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Capture",
],
url="http://pypi.python.org/pypi/v4l2py",
project_urls={
"Documentation": "https://github.com/tiagocoutinho/v4l2py",
"Source": "https://github.com/tiagocoutinho/v4l2py"
}
)