forked from seatsnob/sdnotify-asyncio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
19 lines (16 loc) · 823 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
VERSION = '1.0.0'
setup(
name='sdnotify-asyncio',
packages=['aiosdnotify'],
version=VERSION,
description='A pure Python implementation of systemd\'s service notification protocol (sd_notify)',
author='Seat Snob / Brett Bethke',
author_email='garrett@seatsnob.com',
url='https://github.com/seatsnob/sdnotify-asyncio',
keywords=['systemd'],
long_description="""\
systemd Service Notification
This is a pure Python implementation of the systemd sd_notify protocol. This protocol can be used to inform systemd about service start-up completion, watchdog events, and other service status changes. Thus, this package can be used to write system services in Python that play nicely with systemd. sdnotify is compatible with both Python 2 and Python 3.
"""
)