Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
33043ba3
Commit
33043ba3
authored
Aug 10, 2009
by
Olivier Aubert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python-ctypes: define setup.py (based on a contribution by Martin Muellenhaupt <mmuellen@gmx.de>)
parent
612953e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
bindings/python-ctypes/setup.py
bindings/python-ctypes/setup.py
+32
-0
No files found.
bindings/python-ctypes/setup.py
0 → 100644
View file @
33043ba3
from
distutils.core
import
setup
import
sys
import
os
import
generate
vlc_include_path
=
os
.
path
.
join
(
".."
,
".."
,
"include"
,
"vlc"
)
if
not
os
.
path
.
exists
(
vlc_include_path
):
raise
Exception
(
"This script should be run from a VLC tree."
)
files
=
[
os
.
path
.
join
(
vlc_include_path
,
filename
)
for
filename
in
os
.
listdir
(
vlc_include_path
)
]
generate
.
process
(
'vlc.py'
,
files
)
setup
(
name
=
'python-vlc'
,
version
=
'1.1.0'
,
author
=
'Olivier Aubert'
,
author_email
=
'olivier.aubert@liris.cnrs.fr'
,
url
=
'http://wiki.videolan.org/PythonBinding'
,
py_modules
=
[
'vlc'
],
keywords
=
[
'vlc'
,
'video'
],
license
=
"GPL"
,
description
=
"VLC bindings for python."
,
long_description
=
"""VLC bindings for python.
This module provides ctypes-based bindings for the native libvlc API
(see http://wiki.videolan.org/ExternalAPI) and the MediaControl API
(see http://wiki.videolan.org/PythonBinding) of the VLC video player.
It is automatically generated from the include files.
"""
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment