Skip to content

Commit

Permalink
Update generated module
Browse files Browse the repository at this point in the history
  • Loading branch information
oaubert committed Aug 21, 2024
1 parent 9dfbb17 commit 4a3bc62
Show file tree
Hide file tree
Showing 2 changed files with 10,936 additions and 6,936 deletions.
61 changes: 32 additions & 29 deletions generated/3.0/setup.py
Original file line number Diff line number Diff line change
@@ -1,39 +1,42 @@
from distribute_setup import use_setuptools

use_setuptools()

from setuptools import setup

setup(name='python-vlc',
version = '3.0.20123',
author='Olivier Aubert',
author_email='[email protected]',
maintainer='Olivier Aubert',
maintainer_email='[email protected]',
url='http://wiki.videolan.org/PythonBinding',
py_modules=['vlc'],
keywords = [ 'vlc', 'video' ],
license = "LGPL-2.1+",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: Other",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
],
description = "VLC bindings for python.",
long_description = """This module provides ctypes-based bindings (see
setup(
name="python-vlc",
version="3.0.21200",
author="Olivier Aubert",
author_email="[email protected]",
maintainer="Olivier Aubert",
maintainer_email="[email protected]",
url="http://wiki.videolan.org/PythonBinding",
py_modules=["vlc"],
keywords=["vlc", "video"],
license="LGPL-2.1+",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: Other",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
],
description="VLC bindings for python.",
long_description="""This module provides ctypes-based bindings (see
http://wiki.videolan.org/PythonBinding) for the native libvlc
API (see http://wiki.videolan.org/LibVLC) of the VLC video
player. Note that it relies on an already present install of VLC.
It has been automatically generated from the include files of
vlc 3.0.20, using generator 1.23.
""")
vlc 3.0.21, using generator 2.0.
""",
)
Loading

0 comments on commit 4a3bc62

Please sign in to comment.