Skip to content

Commit

Permalink
convert README to .rst to make PyPI happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed May 1, 2020
1 parent 624be01 commit 5352554
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md → README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# fbdiff
fbdiff
~~~~~~

`fbdiff` is a tool that reports a brief summary of table differences
in OpenType fonts. It reports which tables exist in only one of the
Expand All @@ -9,6 +10,8 @@ It only looks at the binary data: tables are not parsed.

Example usage:

.. code:: sh
$ fbdiff fontA.ttf fontB.ttf
Tables only in font B:
meta
Expand All @@ -30,6 +33,8 @@ Example usage:
Help text:

.. code:: sh
$ fbdiff --help
usage: fbdiff [-h] [-o] FONT_A FONT_B
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup


with open("README.md", "r", encoding="utf-8") as readme:
with open("README.rst", "r", encoding="utf-8") as readme:
long_description = readme.read()


Expand Down

0 comments on commit 5352554

Please sign in to comment.