buildout.cfg 504 Bytes
Newer Older
Jérome Perrin's avatar
Jérome Perrin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
[buildout]
extends =
  ../numpy/buildout.cfg
  ../matplotlib/buildout.cfg

parts =
  ipython

[ipython-env]
<= numpy-env

[ipython]
recipe = zc.recipe.egg:custom
egg = ipython
environment = ipython-env
setup-eggs = ${numpy:egg}

18
[ipython-notebook]
Jérome Perrin's avatar
Jérome Perrin committed
19 20 21 22 23 24 25 26 27
recipe = zc.recipe.egg:scripts
eggs = ipython[notebook]
  ${matplotlib:egg}
environment = ipython-env
setup-eggs = ${numpy:egg}
initialization =
  # https://github.com/ipython/ipython/issues/5420
  import os
  os.environ['PYTHONPATH'] = ':'.join(sys.path)