From 30e189b42f17dd710d2059c76689869584555210 Mon Sep 17 00:00:00 2001 From: Daniel Schep Date: Mon, 31 Oct 2016 15:51:35 -0400 Subject: [PATCH] v2.4.0 bump --- ntfy/__init__.py | 2 +- setup.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ntfy/__init__.py b/ntfy/__init__.py index 5474af8..9238518 100644 --- a/ntfy/__init__.py +++ b/ntfy/__init__.py @@ -6,7 +6,7 @@ from inspect import getargspec from .backends.default import DefaultNotifierError -__version__ = '2.3.0' +__version__ = '2.4.0' notifiers = dict.fromkeys(['default', 'darwin', 'linux', 'notifico', diff --git a/setup.py b/setup.py index 91626e8..0c57209 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ } test_deps = ['mock', 'sleekxmpp', 'emoji', 'psutil'] +long_description = open('README.rst').read() setup( name='ntfy', @@ -25,6 +26,7 @@ version=__version__, description='A utility for sending push notifications', + long_description=long_description, url='https://github.com/dschep/ntfy',