Skip to content

Commit

Permalink
fix setup.py LONG_DESCRIPTION for PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamu committed Dec 20, 2017
1 parent d59f421 commit 55510e9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
------------------------------------
Expand All @@ -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(),
Expand Down Expand Up @@ -76,5 +82,5 @@
'Programming Language :: Python :: 3.6',
"Topic :: Software Development :: Libraries :: Python Modules",
],
zip_safe=False
zip_safe=False,
)

0 comments on commit 55510e9

Please sign in to comment.