Skip to content

Commit

Permalink
Fix generating rst markup for PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
tresni committed Dec 17, 2014
1 parent 3964779 commit 383e1fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst', 'md')
long_description = pypandoc.convert('README.md', 'rst',
format='markdown_github',
extra_args=("--no-wrap",))
except:
long_description = ''

Expand Down

0 comments on commit 383e1fa

Please sign in to comment.