From 7c4a5fcf15a4e577067a67364fa379ddb3acb555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Sat, 25 Oct 2014 15:24:44 +0200 Subject: Convert readme from markdown to rst for PyPI --- requirements-dev.txt | 1 + setup.py | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index 2309722..fd0fd6c 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1 +1,2 @@ wheel +pandoc==1.0.0-alpha.3 diff --git a/setup.py b/setup.py index a618e86..c002302 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,14 @@ DESCRIPTION = docstrings[0] # Extract name and e-mail ("Firstname Lastname ") AUTHOR, EMAIL = re.match(r'(.*) <(.*)>', AUTHOR_EMAIL).groups() +try: + from pypandoc import convert + read_md = lambda f: convert(f, 'rst') +except ImportError: + print('warning: pypandoc module not found, could not convert ' + 'Markdown to RST') + read_md = lambda f: open(f, 'r').read() + CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', @@ -49,6 +57,7 @@ CLASSIFIERS = [ setup(name=PACKAGE, version=VERSION, description=DESCRIPTION, + long_description=read_md('README.md'), author=AUTHOR, author_email=EMAIL, license=LICENSE, -- cgit v1.2.1