-
Notifications
You must be signed in to change notification settings - Fork 71
/
setup.py
77 lines (64 loc) · 1.88 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python2
from setuptools import setup, find_packages
import os.path
here = os.path.dirname(os.path.abspath(__file__))
about = {}
with open(os.path.join(here, 'omxplayer', '__version__.py'), 'r') as f:
exec(f.read(), about)
with open(os.path.join(here, 'README.rst'), 'r') as f:
long_description = f.read()
lib_deps = [
'dbus-python',
'evento',
'decorator',
'pathlib2',
],
test_deps = [
'mock',
'pytest',
'pytest-cov',
'nose',
'parameterized',
]
doc_deps = [
'Sphinx',
'alabaster',
'pygments',
]
setup(
name='omxplayer-wrapper',
author=about['__author__'],
author_email=about['__author_email__'],
url='https://github.com/willprice/python-omxplayer-wrapper',
version=about['__version__'],
description=about['__description__'],
long_description=long_description,
license=about['__license__'],
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',
'Programming Language :: Python :: 3.7',
],
keywords=' '.join(['omxplayer',
'pi',
'raspberry',
'raspberrypi',
'raspberry_pi',
'library',
'video',
'media']),
packages=find_packages(exclude=['*test*']),
install_requires=lib_deps,
extras_require={
'test': test_deps,
'docs': doc_deps
}
)