Revert "Improved setup.py"

This commit is contained in:
fchollet 2015-03-30 22:31:17 -07:00
parent 31c39350e4
commit 42007f55c4

@ -1,9 +1,6 @@
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from distutils.core import setup
setup(name='Keras',
version='0.0.1',
@ -19,9 +16,5 @@ setup(name='Keras',
'keras.datasets',
'keras.utils',
],
install_requires=['numpy', 'scipy', 'theano'],
extras_require={
'images': ['pil'], # working with images
'CNNs': ['cudnn-python-wrappers'], # working with CNNs
}
# TODO: dependencies
)