From eb6985a140739ad727db1bed509b295d4d30b1f5 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 26 Sep 2015 15:21:57 +0100 Subject: [PATCH] Changed readme file format --- README.md | 5 +++++ README.rst | 6 +++--- convert-readme.sh | 1 + setup.py | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 README.md create mode 100644 convert-readme.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..3b2683b --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Printr + +Printr is a simple PyPi module that allows for print statements to be replaces with a new line. Particularly useful for displaying progress messages. + + diff --git a/README.rst b/README.rst index 718d121..91804d5 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,6 @@ Printr ====== -Printr is a simple PyPi module that allows for print statements to be replaces with a new line. Particularly useful for displaying progress messages. - - +Printr is a simple PyPi module that allows for print statements to be +replaces with a new line. Particularly useful for displaying progress +messages. diff --git a/convert-readme.sh b/convert-readme.sh new file mode 100644 index 0000000..025c0a1 --- /dev/null +++ b/convert-readme.sh @@ -0,0 +1 @@ +pandoc --from=markdown --to=rst --output=README.rst README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 2efc2c1..79d0add 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( description = 'Python module to allow a print line to be updated after printing', long_description = LONG_DESCRIPTION, author = 'Jake Howard', - author_email = 'me@theorangeone.net', + author_email = 'me@theorangeone.net ', url = 'https://github.com/RealOrangeOne/Printr', license='MIT', platforms=['any']