Skip to content

Instantly share code, notes, and snippets.

View jessejensen's full-sized avatar

Jesse Jensen jessejensen

  • Chicago, IL
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,