Fix for issue #7 (filed by kumar303), wherein setup.py reads the wrong README file for description purposes

This commit is contained in:
Ryan McGrath 2009-09-20 13:09:37 -04:00
parent f6e655eb6d
commit 93ea27f1b3

View file

@ -15,7 +15,7 @@ METADATA = dict(
author='Ryan McGrath', author='Ryan McGrath',
author_email='ryan@venodesigns.net', author_email='ryan@venodesigns.net',
description='A new and easy way to access Twitter data with Python.', 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', license='MIT License',
url='http://github.com/ryanmcgrath/twython/tree/master', url='http://github.com/ryanmcgrath/twython/tree/master',
keywords='twitter search api tweet twython', keywords='twitter search api tweet twython',