Skip to content

Commit 55510e9

Browse files
committedDec 20, 2017
fix setup.py LONG_DESCRIPTION for PyPi
1 parent d59f421 commit 55510e9

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
 

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ Add and manage events via the Django admin.
134134

135135
## Change Log
136136

137+
### 2.0.1
138+
139+
* Fix setup.py for PyPi
140+
137141
### 2.0.0
138142

139143
* Add Django 2.0 compatibility testing

‎setup.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
LONG_DESCRIPTION = """
44
.. image:: http://pinaxproject.com/pinax-design/patches/pinax-events.svg
55
:target: https://pypi.python.org/pypi/pinax-events/
6+
67
===================
78
Pinax Notifications
89
===================
10+
911
.. image:: https://img.shields.io/pypi/v/pinax-events.svg
1012
:target: https://pypi.python.org/pypi/pinax-events/
1113
.. image:: https://img.shields.io/badge/license-MIT-blue.svg
1214
:target: https://pypi.python.org/pypi/pinax-events/
15+
1316
.. image:: https://img.shields.io/circleci/project/github/pinax/pinax-events.svg
1417
:target: https://circleci.com/gh/pinax/pinax-events
1518
.. image:: https://img.shields.io/codecov/c/github/pinax/pinax-events.svg
@@ -20,11 +23,14 @@
2023
:target: https://github.com/pinax/pinax-events/pulls
2124
.. image:: https://img.shields.io/github/issues-pr-closed/pinax/pinax-events.svg
2225
:target: https://github.com/pinax/pinax-events/pulls?q=is%3Apr+is%3Aclosed
26+
2327
.. image:: http://slack.pinaxproject.com/badge.svg
2428
:target: http://slack.pinaxproject.com/
2529
30+
2631
``pinax-events`` is a simple app for publishing events on your site.
2732
33+
2834
Supported Django and Python Versions
2935
------------------------------------
3036
@@ -43,7 +49,7 @@
4349
description="a simple app for publishing events on your site",
4450
name="pinax-events",
4551
long_description=LONG_DESCRIPTION,
46-
version="2.0.0",
52+
version="2.0.1",
4753
url="http://github.com/pinax/pinax-events/",
4854
license="MIT",
4955
packages=find_packages(),
@@ -76,5 +82,5 @@
7682
'Programming Language :: Python :: 3.6',
7783
"Topic :: Software Development :: Libraries :: Python Modules",
7884
],
79-
zip_safe=False
85+
zip_safe=False,
8086
)

0 commit comments

Comments
 (0)
Please sign in to comment.