setup: support pypissh
This commit is contained in:
parent
c57f4233bc
commit
04cca8ba98
1 changed files with 8 additions and 0 deletions
8
setup.py
8
setup.py
|
@ -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'
|
||||||
|
|
Loading…
Reference in a new issue