Skip to content
This repository was archived by the owner on Nov 13, 2023. It is now read-only.

Commit b2e4f78

Browse files
authored
Merge pull request #18 from hugovk/update-readme
README: use SVG, remove duplicate RST
2 parents 49d0987 + 16e045f commit b2e4f78

File tree

5 files changed

+3
-181
lines changed

5 files changed

+3
-181
lines changed

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
include LICENCE
22
include README.md
3-
include README.rst
43
recursive-include bench *
54
recursive-include docs *
65
recursive-include python_jwt *

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ docs: build_docs
1010

1111
build_docs:
1212
cd docs && make html
13-
pandoc -t rst README.md | sed -e '1,1s/^[^\\]*//' -e '2d' > README.rst
1413

1514
lint:
1615
pylint python_jwt test bench

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# python-jwt   [![Build Status](https://travis-ci.org/davedoesdev/python-jwt.png)](https://travis-ci.org/davedoesdev/python-jwt) [![Coverage Status](https://coveralls.io/repos/davedoesdev/python-jwt/badge.png?branch=master)](https://coveralls.io/r/davedoesdev/python-jwt?branch=master) [![PyPI version](https://badge.fury.io/py/python_jwt.png)](http://badge.fury.io/py/python_jwt)
1+
# python-jwt   [![Build Status](https://travis-ci.org/davedoesdev/python-jwt.svg?branch=master)](https://travis-ci.org/davedoesdev/python-jwt) [![Coverage Status](https://coveralls.io/repos/github/davedoesdev/python-jwt/badge.svg?branch=master)](https://coveralls.io/github/davedoesdev/python-jwt?branch=master) [![PyPI version](https://badge.fury.io/py/python_jwt.svg)](https://badge.fury.io/py/python_jwt)
22

33
Module for generating and verifying [JSON Web Tokens](http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html).
44

README.rst

Lines changed: 0 additions & 177 deletions
This file was deleted.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ def read(name):
88
name='python_jwt',
99
version='3.1.0',
1010
description="Module for generating and verifying JSON Web Tokens",
11-
long_description=read('README.rst'),
11+
long_description=read('README.md'),
12+
long_description_content_type='text/markdown',
1213
keywords='',
1314
author='David Halls',
1415
author_email='dave@davedoesdev.com',

0 commit comments

Comments
 (0)