forked from hartror/python-libvlc-bindings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (25 loc) · 953 Bytes
/
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
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/LibVLC) of the VLC video player.
It is automatically generated from the include files.
"""
)