Skip to content

Commit

Permalink
Include LICENSE.txt in the package tarball
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett Bethke committed Jun 15, 2016
1 parent 43179d7 commit cc7da0c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
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",
Expand All @@ -18,6 +21,7 @@
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries :: Python Modules",
],
data_files = [("", ["LICENSE.txt"])],
long_description = """\
systemd Service Notification
Expand Down

0 comments on commit cc7da0c

Please sign in to comment.