-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (43 loc) · 1.16 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='huplo',
version='0.1',
description='Overlay text on a gstreamer video via dbus and cairo/pango.',
long_description = readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia :: Video :: Display',
],
keywords = 'gstreamer video text overlay python telemetry hud cairo dbus pycairo pango',
url='https://github.com/johnoneil/huplo',
author='John O\'Neil',
author_email='[email protected]',
license='MIT',
packages=['huplo'],
install_requires=[
'setuptools',
#'pygst',
#'pygtk',
'twisted',
#'dbus',
#'cairo',
#'pango',
#'pycairo',
#'pangocairo',
'simplejson',
'jsonpickle',
'argparse'
],
scripts=[
'bin/huplo-animated-irc-client',
'bin/huplo-set-list',
'bin/huplo-set-ticker',
'bin/huplo-irc-client',
'bin/huplo-set-text',
'bin/huplo-view-stream',
],
zip_safe=False)