From 8b874d83e3840e1e67e2cd81c18fe0b415130619 Mon Sep 17 00:00:00 2001 From: noah morrison Date: Sat, 24 Jan 2015 22:58:07 -0500 Subject: [PATCH] Convert README.md to rst for pypi using pandoc. Closes #11 Thanks for the tips/help Marc :) --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) 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', -- 2.47.3