From 93ea27f1b36a3107a96d25276097e27dea4a1f38 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Sun, 20 Sep 2009 13:09:37 -0400 Subject: [PATCH] Fix for issue #7 (filed by kumar303), wherein setup.py reads the wrong README file for description purposes --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8747b12..fb1900c 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ METADATA = dict( author='Ryan McGrath', author_email='ryan@venodesigns.net', description='A new and easy way to access Twitter data with Python.', - long_description= open("README").read(), + long_description= open("README.markdown").read(), license='MIT License', url='http://github.com/ryanmcgrath/twython/tree/master', keywords='twitter search api tweet twython',