Skip to content

Commit 219c335

Browse files
author
Brett Bethke
committed
Add long_description to setup.py
1 parent 1aa00c2 commit 219c335

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# systemd Notification
1+
# systemd Service Notification
22

33
This is a pure Python implementation of the
44
[`systemd`](http://www.freedesktop.org/wiki/Software/systemd/)

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
setup(
33
name = 'sdnotify',
44
packages = ['sdnotify'],
5-
version = '0.1.0',
5+
version = '0.2.0',
66
description = 'A pure Python implementation of systemd\'s service notification protocol (sd_notify)',
77
author = 'Brett Bethke',
88
author_email = '[email protected]',
99
url = 'https://github.com/bb4242/sdnotify',
10-
download_url = 'https://github.com/bb4242/sdnotify/tarball/0.1',
10+
download_url = 'https://github.com/bb4242/sdnotify/tarball/0.2.0',
1111
keywords = ['systemd'],
1212
classifiers = [
1313
"Programming Language :: Python",
@@ -18,4 +18,9 @@
1818
"Operating System :: POSIX :: Linux",
1919
"Topic :: Software Development :: Libraries :: Python Modules",
2020
],
21+
long_description = """\
22+
systemd Service Notification
23+
24+
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.
25+
"""
2126
)

0 commit comments

Comments
 (0)