buildout.cfg 637 Bytes
Newer Older
1 2 3
[buildout]
extends =
  ../tensorflow/buildout.cfg
4
  ../python-PyYAML/buildout.cfg
5 6 7 8 9 10 11
  ../h5py/buildout.cfg
  ../pillow/buildout.cfg
parts =
  keras-egg

[keras-egg]
recipe = zc.recipe.egg
12
initialization =
13
  import scipy.spatial.ckdtree # load our own libstdc++ explicitly at the very beginning
14 15 16
eggs = 
  ${scipy:egg}
  ${numpy:egg}
Julien Muchembled's avatar
Julien Muchembled committed
17
  ${tensorflow:egg}
18
  ${protobuf-python:egg}
19 20 21
  ${python-PyYAML:egg}
  six
  keras
22 23 24 25 26 27
  ${h5py:egg}
  ${pillow-python:egg}
interpreter = keras-python
scripts = keras-python

[versions]
Julien Muchembled's avatar
Julien Muchembled committed
28 29
backports.weakref = 1.0.post1
futures = 3.2.0
30
Keras = 2.1.0
Julien Muchembled's avatar
Julien Muchembled committed
31 32
markdown = 3.1.1
protobuf = 3.11.3
33
h5py = 2.7.0rc2
Julien Muchembled's avatar
Julien Muchembled committed
34
wheel = 0.33.6