Skip to content

Commit

Permalink
added optional requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
mbatchkarov committed Mar 30, 2015
1 parent d84c8db commit 040863f
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@
url='https://github.com/fchollet/keras',
license='MIT',
packages=[
'keras',
'keras.layers',
'keras.preprocessing',
'keras.datasets',
'keras.utils',
'keras',
'keras.layers',
'keras.preprocessing',
'keras.datasets',
'keras.utils',
],
install_requires=['numpy', 'scipy', 'theano']
install_requires=['numpy', 'scipy', 'theano'],
extras_require={
'images': ['pil'], # working with images
'CNNs': ['cudnn-python-wrappers'], # working with CNNs
}
)

0 comments on commit 040863f

Please sign in to comment.