From a2638aea5c41ec93b7f1eed1bafafbbadd4889d6 Mon Sep 17 00:00:00 2001 From: Steve Nicholes Date: Thu, 9 Jul 2020 13:53:41 -0600 Subject: [PATCH] fix install bug --- README.md | 2 +- README.rst | 4 +++- fivecentfileio/version.txt | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bb6058f..10bbc9c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # fivecentfileio file reading utilities -pip install https://github.com/endangeredoxen/fivecentfileio/zipball/master +pip install fivecentfileio diff --git a/README.rst b/README.rst index 7fd9679..01cfff6 100644 --- a/README.rst +++ b/README.rst @@ -1 +1,3 @@ -pip install https://github.com/endangeredoxen/fileio/zipball/master +file reading utilities + +pip install fivecentfileio diff --git a/fivecentfileio/version.txt b/fivecentfileio/version.txt index d81f1c3..d156ab4 100644 --- a/fivecentfileio/version.txt +++ b/fivecentfileio/version.txt @@ -1 +1 @@ -0.2.9 \ No newline at end of file +0.2.10 \ No newline at end of file diff --git a/setup.py b/setup.py index 6d256e9..723470b 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from os import path # Get the long description from the README file -with open('README.md') as f: +with open('README.rst') as f: long_description = f.read() with open(path.join('fivecentfileio', 'version.txt'), 'r') as input: __version__ = input.readlines()[0]