forked from willprice/python-omxplayer-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (51 loc) · 1.66 KB
/
setup.py
File metadata and controls
58 lines (51 loc) · 1.66 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python2
from setuptools import setup, find_packages
setup(
name='omxplayer-wrapper',
author='Will Price',
author_email='will.price94+dev@gmail.com',
url='https://github.com/willprice/python-omxplayer-wrapper',
version='0.2.3',
description='Control OMXPlayer on the Raspberry Pi',
long_description='Control OMXPlayer on the Raspberry Pi through DBus',
license='LGPLv3+',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Topic :: Multimedia :: Video',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=''.join(['omxplayer',
'pi',
'raspberry',
'raspberrypi',
'raspberry_pi',
'library',
'video',
'media']),
packages=find_packages(exclude=['*tests']),
# Depends on dbus-python which is only shipped via package managers or as a
# source dist (incompatible with distutils)
install_requires=[
'evento',
'decorator',
],
extras_require={
'test': [
'mock',
'nose',
'parameterized',
],
'docs': [
'Sphinx',
'alabaster',
'pygments',
]
}
)