From: noah morrison Date: Sun, 25 Jan 2015 03:58:07 +0000 (-0500) Subject: Convert README.md to rst for pypi using pandoc. X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=8b874d83e3840e1e67e2cd81c18fe0b415130619;p=chevron.git Convert README.md to rst for pypi using pandoc. Closes #11 Thanks for the tips/help Marc :) --- diff --git a/setup.py b/setup.py index 8751047..66f713c 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,14 @@ try: except ImportError: from distutils.core import setup +import pypandoc +readme = pypandoc.convert('README.md', 'rst') + setup(name='chevron', version='0.7.1', license='MIT', description='Mustache templating language renderer', + long_description=readme, author='noah morrison', author_email='noah@morrison.ph', url='https://github.com/noahmorrison/chevron',