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
26 lines (19 loc) · 611 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (19 loc) · 611 Bytes
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
from setuptools import setup
setup(
name='pyomxplayer',
author='Will Price',
version='0.1',
description='Control OMXPlayer on the Raspberry Pi',
long_description='Control OMXPlayer on the Raspberry Pi through DBus',
license='GPL',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Video',
'Programming Lnaguage :: Python :: 2'
],
keywords='omxplayer, raspberry_pi, library',
packages=['pyomxplayerng'],
install_requires=[],
)