-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
45 lines (36 loc) · 1.28 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
import ez_setup
ez_setup.use_setuptools()
import platform
import sys
from setuptools import setup, find_packages
from rc_setup import setup_autocomp
from vlc_ctrl.version import __version__
entry_points = {}
entry_points['console_scripts'] = ['vlc-ctrl=vlc_ctrl.main:main']
setup(
name = 'vlc-ctrl',
version = __version__,
description = 'A command line utility to control a running vlc player instance.',
author = 'Amol Umrale',
author_email = '[email protected]',
url = 'http://pypi.python.org/pypi/vlc-ctrl/',
packages = ['vlc_ctrl'],
include_package_data = True,
scripts = ['ez_setup.py', 'rc_setup.py'],
entry_points = entry_points,
install_requires = ['redlib>=1.1.0', 'redcmd>=1.1.3', 'six'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
'Topic :: Multimedia :: Video'
]
)
setup_autocomp('vlc_ctrl.client', 'vlc-ctrl', _to_hyphen=True)