]> Devi Nivas Git - chevron.git/commitdiff
Convert README.md to rst for pypi using pandoc.
authornoah morrison <noah@morrison.ph>
Sun, 25 Jan 2015 03:58:07 +0000 (22:58 -0500)
committernoah morrison <noah@morrison.ph>
Sun, 25 Jan 2015 03:58:07 +0000 (22:58 -0500)
Closes #11

Thanks for the tips/help Marc :)

setup.py

index 8751047505c262e2a075d5674694bbd789071d34..66f713c0eb74c1b259f47b8e160d17257588ed79 100644 (file)
--- 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',