From 58512daf527ad2fefa582c564ab906498760a09b Mon Sep 17 00:00:00 2001 From: Benjamin Hedrich Date: Fri, 31 Jan 2014 17:46:19 +0000 Subject: [PATCH] Fix non-existing file paths after renaming some files This should fix the installation via pythons setup tools. --- .gitignore | 2 +- MANIFEST.in | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 764d04e..fffbfd3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ *.pyc .coverage MANIFEST -README.rst +README.org build/ consolor.egg-info/ diff --git a/MANIFEST.in b/MANIFEST.in index 6498967..31e03b6 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ include LICENSE.org -include README.rst +include README.org diff --git a/setup.py b/setup.py index 2decbb4..cd5dd7e 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup(name='consolor', py_modules=['consolor'], description='Consolor provides highlighting functions for terminals.', - long_description=(open('README.rst').read()), + long_description=(open('README.org').read()), version='0.1.1', author='Friedrich Paetzke', author_email='f.paetzke@gmail.com',