forked from willprice/python-omxplayer-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (39 loc) · 1.29 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
45
46
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.0.2',
description='Control OMXPlayer on the Raspberry Pi',
long_description='Control OMXPlayer on the Raspberry Pi through DBus',
license='LGPLv3+',
classifiers=[
'Development Status :: 3 - Alpha',
'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',
],
keywords='omxplayer pi raspberry raspberrypi raspberry_pi library',
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=[
'decorator',
],
extras_require={
'test': [
'nose',
'mock',
'nose-parameterized',
],
'docs': [
'Sphinx',
'sphinxcontrib-napoleon',
'sphinx-rtd-theme',
'pygments',
]
}
)