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 #!/usr/bin/env python
try: from distutils.core import setup
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='Keras', setup(name='Keras',
version='0.0.1', version='0.0.1',
@ -13,15 +10,11 @@ setup(name='Keras',
url='https://github.com/fchollet/keras', url='https://github.com/fchollet/keras',
license='MIT', license='MIT',
packages=[ packages=[
'keras', 'keras',
'keras.layers', 'keras.layers',
'keras.preprocessing', 'keras.preprocessing',
'keras.datasets', 'keras.datasets',
'keras.utils', 'keras.utils',
], ],
install_requires=['numpy', 'scipy', 'theano'], # TODO: dependencies
extras_require={
'images': ['pil'], # working with images
'CNNs': ['cudnn-python-wrappers'], # working with CNNs
}
) )