File tree 4 files changed +8
-5
lines changed
4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ pywb 2.4.2 changelist
7
7
8
8
* static paths cleanup, move ``url-polyfill.min.js `` to correct dir (fixes `#571 <https://github.com/webrecorder/pywb/issues/571 >`_)
9
9
10
+ * minor fixes to docs
11
+
12
+ * logo: resize new logo to actual size, add logo via absolute link to ensure it works on pypi also
13
+
10
14
11
15
pywb 2.4.1 changelist
12
16
~~~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 1
1
Webrecorder pywb 2.4
2
2
====================
3
3
4
- .. raw :: html
5
-
6
- <img src =" pywb/static/pywb-logo.png" width =" 200" />
4
+ .. image :: https://raw.githubusercontent.com/webrecorder/pywb/master/pywb/static/pywb-logo.png
7
5
8
6
.. image :: https://travis-ci.org/webrecorder/pywb.svg?branch=master
9
7
:target: https://travis-ci.org/webrecorder/pywb
Original file line number Diff line number Diff line change 10
10
from pywb import __version__
11
11
12
12
13
- def get_ldecription ():
13
+ def get_long_description ():
14
14
with open ('README.rst' , 'r' ) as fh :
15
15
long_description = fh .read ()
16
16
return long_description
@@ -90,7 +90,8 @@ def get_package_data():
90
90
author = 'Ilya Kreymer' ,
91
91
author_email = 'ikreymer@gmail.com' ,
92
92
description = 'Pywb Webrecorder web archive replay and capture tools' ,
93
- long_description = get_ldecription (),
93
+ long_description_content_type = 'text/rst' ,
94
+ long_description = get_long_description (),
94
95
license = 'GPL' ,
95
96
packages = find_packages (exclude = ['tests_disabled' ]),
96
97
zip_safe = False ,
You can’t perform that action at this time.
0 commit comments