setup: support pypissh

This commit is contained in:
PyYoshi 2013-05-08 14:58:19 +09:00
parent c57f4233bc
commit 04cca8ba98

View file

@ -17,6 +17,14 @@ except ImportError:
have_cython = False have_cython = False
from distutils.command.build_ext import build_ext from distutils.command.build_ext import build_ext
try:
import pypissh
except ImportError:
# non-developer
pass
else:
pypissh.monkeypatch()
DEBUG = False DEBUG = False
src_dir = 'src' src_dir = 'src'