Skip to content

Instantly share code, notes, and snippets.

View jordimarinvalle's full-sized avatar

Jordi Marín Valle jordimarinvalle

  • Barcelona, Spain
View GitHub Profile
@aubricus
aubricus / setup_snippet.py
Created February 24, 2014 08:48
Use pandoc to convert README.md into .rst for Pypi
long_description = ''
try:
import subprocess
import pandoc
process = subprocess.Popen(
['which pandoc'],
shell=True,
stdout=subprocess.PIPE,