-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include LICENSE.txt in the package tarball
- Loading branch information
Brett Bethke
committed
Jun 15, 2016
1 parent
43179d7
commit cc7da0c
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
from distutils.core import setup | ||
|
||
VERSION='0.3.1' | ||
|
||
setup( | ||
name = 'sdnotify', | ||
packages = ['sdnotify'], | ||
version = '0.3.0', | ||
version = VERSION, | ||
description = 'A pure Python implementation of systemd\'s service notification protocol (sd_notify)', | ||
author = 'Brett Bethke', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/bb4242/sdnotify', | ||
download_url = 'https://github.com/bb4242/sdnotify/tarball/v0.3.0', | ||
download_url = 'https://github.com/bb4242/sdnotify/tarball/v{}'.format(VERSION), | ||
keywords = ['systemd'], | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
|
@@ -18,6 +21,7 @@ | |
"Operating System :: POSIX :: Linux", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
data_files = [("", ["LICENSE.txt"])], | ||
long_description = """\ | ||
systemd Service Notification | ||
|