Skip to content

Instantly share code, notes, and snippets.

@kgaughan
Created February 17, 2016 12:16
Show Gist options
  • Save kgaughan/f3c9d32e48d77483591c to your computer and use it in GitHub Desktop.
Save kgaughan/f3c9d32e48d77483591c to your computer and use it in GitHub Desktop.
Markdown to ReST on sdist in setup.py (untested, but the basic gist is correct)
import sys
# ...
if len(sys.argv) > 1 and sys.argv[1] == 'sdist':
import pypandoc
with open('README', 'w') as fh:
fh.write(pypandoc.convert('README.md', 'rst'))
setup(
# ...
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment