Skip to content

Commit bb1c2a3

Browse files
authored
Fix logo (#575)
* pypi fixes: fix README to use logo w/o raw to work on pypi, resize logo * update changelist, use abs path
1 parent 3f3f8ca commit bb1c2a3

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ pywb 2.4.2 changelist
77

88
* static paths cleanup, move ``url-polyfill.min.js`` to correct dir (fixes `#571 <https://github.com/webrecorder/pywb/issues/571>`_)
99

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+
1014

1115
pywb 2.4.1 changelist
1216
~~~~~~~~~~~~~~~~~~~~~

README.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
Webrecorder pywb 2.4
22
====================
33

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
75

86
.. image:: https://travis-ci.org/webrecorder/pywb.svg?branch=master
97
:target: https://travis-ci.org/webrecorder/pywb

pywb/static/pywb-logo.png

-1.78 KB
Loading

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from pywb import __version__
1111

1212

13-
def get_ldecription():
13+
def get_long_description():
1414
with open('README.rst', 'r') as fh:
1515
long_description = fh.read()
1616
return long_description
@@ -90,7 +90,8 @@ def get_package_data():
9090
author='Ilya Kreymer',
9191
author_email='ikreymer@gmail.com',
9292
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(),
9495
license='GPL',
9596
packages=find_packages(exclude=['tests_disabled']),
9697
zip_safe=False,

0 commit comments

Comments
 (0)