From adf90e2cef36aaac997c841a1d82ef5bf667c1a6 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 16 May 2010 15:19:13 -0400 Subject: [PATCH] PyPi compatilibity --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index add9d00..86dedd4 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ if sys.argv[-1] == "publish": setup(name='gistapi', version='0.1.0', description='Python wrapper for Gist API', - long_description=open('README.mkd').read() + '\n\n' + open('HISTORY.mkd').read(), + long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), author='Kenneth Reitz', author_email='me@kennethreitz.com', url='http://github.com/kennethreitz/gistapi.py',