forked from fedora-infra/fedmsg-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 825 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 825 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
from setuptools import setup
requires = [
'fedmsg',
]
setup(
name="fedmsg-notify",
version='0.5.4',
description="Consumer for fedmsg that spits out libnotify desktop notifications",
author="Luke Macken, Ross Delinger",
author_email="lmacken@redhat.com",
url='https://github.com/lmacken/fedmsg-notify',
license='GPLv3',
install_requires=requires,
packages=['fedmsg_notify', 'fedmsg_notify.distro_specific'],
zip_safe=False,
entry_points={
'console_scripts':
['fedmsg-notify-config = fedmsg_notify.gui:main',
'fedmsg-notify-daemon = fedmsg_notify.daemon:main'],
'moksha.consumer':
['fedmsg-notify = fedmsg_notify.daemon:FedmsgNotifyService'],
},)