keras/setup.py
2015-03-30 09:34:31 +01:00

27 lines
718 B
Python

#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='Keras',
version='0.0.1',
description='Theano-based Deep Learning',
author='Francois Chollet',
author_email='francois.chollet@gmail.com',
url='https://github.com/fchollet/keras',
license='MIT',
packages=[
'keras',
'keras.layers',
'keras.preprocessing',
'keras.datasets',
'keras.utils',
],
install_requires=['numpy', 'scipy', 'theano'],
extras_require={
'images': ['pil'], # working with images
'CNNs': ['cudnn-python-wrappers'], # working with CNNs
}
)