From 55510e939b1afa147a7b901ec52874ce26873cf8 Mon Sep 17 00:00:00 2001 From: Graham Ullrich Date: Tue, 19 Dec 2017 21:58:04 -0700 Subject: [PATCH] fix setup.py LONG_DESCRIPTION for PyPi --- README.md | 4 ++++ setup.py | 10 ++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4cfb637..995ead8 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,10 @@ Add and manage events via the Django admin. ## Change Log +### 2.0.1 + +* Fix setup.py for PyPi + ### 2.0.0 * Add Django 2.0 compatibility testing diff --git a/setup.py b/setup.py index efd40a7..21837fe 100644 --- a/setup.py +++ b/setup.py @@ -3,13 +3,16 @@ LONG_DESCRIPTION = """ .. image:: http://pinaxproject.com/pinax-design/patches/pinax-events.svg :target: https://pypi.python.org/pypi/pinax-events/ + =================== Pinax Notifications =================== + .. image:: https://img.shields.io/pypi/v/pinax-events.svg :target: https://pypi.python.org/pypi/pinax-events/ .. image:: https://img.shields.io/badge/license-MIT-blue.svg :target: https://pypi.python.org/pypi/pinax-events/ + .. image:: https://img.shields.io/circleci/project/github/pinax/pinax-events.svg :target: https://circleci.com/gh/pinax/pinax-events .. image:: https://img.shields.io/codecov/c/github/pinax/pinax-events.svg @@ -20,11 +23,14 @@ :target: https://github.com/pinax/pinax-events/pulls .. image:: https://img.shields.io/github/issues-pr-closed/pinax/pinax-events.svg :target: https://github.com/pinax/pinax-events/pulls?q=is%3Apr+is%3Aclosed + .. image:: http://slack.pinaxproject.com/badge.svg :target: http://slack.pinaxproject.com/ + ``pinax-events`` is a simple app for publishing events on your site. + Supported Django and Python Versions ------------------------------------ @@ -43,7 +49,7 @@ description="a simple app for publishing events on your site", name="pinax-events", long_description=LONG_DESCRIPTION, - version="2.0.0", + version="2.0.1", url="http://github.com/pinax/pinax-events/", license="MIT", packages=find_packages(), @@ -76,5 +82,5 @@ 'Programming Language :: Python :: 3.6', "Topic :: Software Development :: Libraries :: Python Modules", ], - zip_safe=False + zip_safe=False, ) \ No newline at end of file