-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 956 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
CLASSIFIERS = [
'Programming Language :: Python',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Players',
]
KEYWORDS = 'audio video media player raspberry pi'
setup(
name = "PiPlayer",
url='https://github.com/yomguy/PiPlayer',
description = "a gstreamer based media sample player for the Raspberry Pi trigerred by GPIO or OSC callbacks",
long_description = open('README.md').read(),
author = "Guillaume Pellerin",
author_email = "[email protected]",
version = '0.3',
install_requires = [
'setuptools',
'pyliblo',
'RPi.GPIO',
],
platforms=['OS Independent'],
license='Gnu Public License V2',
classifiers = CLASSIFIERS,
keywords = KEYWORDS,
packages = find_packages(),
include_package_data = True,
zip_safe = False,
scripts = ['scripts/piplayer'],
)