-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
10,936 additions
and
6,936 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
""", | ||
) |
Oops, something went wrong.