From 80e197289d04ac1dfc1857be982310f2bc91a9e1 Mon Sep 17 00:00:00 2001 From: Viacheslav Butorov Date: Sat, 28 Jan 2017 17:16:42 +0700 Subject: [PATCH] Pypi ready, --- README.rst | 9 ++++++--- sentry_telegram/__init__.py | 2 +- setup.py | 2 ++ 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 003e143..f61d6c0 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ -Sentry Telegram |travis| |codecov| -================================== +Sentry Telegram |travis| |codecov| |pypi| +========================================= Plugin for Sentry which allows sending notification via `Telegram `_ messenger. @@ -36,6 +36,9 @@ Installation :target: https://travis-ci.org/butorov/sentry-telegram :alt: Build Status -.. |codecov| image:: https://codecov.io/gh/butorov/sentry-telegram/coverage.svg?branch=master +.. |codecov| image:: https://codecov.io/gh/butorov/sentry-telegram/branch/master/graph/badge.svg :target: https://codecov.io/gh/butorov/sentry-telegram?branch=master :alt: Coverage Status + +.. |pypi| image:: https://badge.fury.io/py/sentry-telegram.svg + :target: https://badge.fury.io/py/sentry-telegram diff --git a/sentry_telegram/__init__.py b/sentry_telegram/__init__.py index 4a2d3b6..c453bfb 100644 --- a/sentry_telegram/__init__.py +++ b/sentry_telegram/__init__.py @@ -7,7 +7,7 @@ from django.conf import settings -__version__ = '0.0.7' +__version__ = '0.1.1' if settings.configured: diff --git a/setup.py b/setup.py index edb723a..cc57076 100644 --- a/setup.py +++ b/setup.py @@ -17,11 +17,13 @@ author='Viacheslav Butorov', author_email='butorovv@gmail.com', description=sentry_telegram.__doc__, + license='MIT', classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7',