keras/setup.py

27 lines
718 B
Python
Raw Normal View History

2015-03-29 23:06:43 +00:00
#!/usr/bin/env python
2015-03-30 08:27:09 +00:00
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
2015-03-29 23:06:43 +00:00
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=[
2015-03-30 08:34:31 +00:00
'keras',
'keras.layers',
'keras.preprocessing',
'keras.datasets',
'keras.utils',
2015-03-29 23:06:43 +00:00
],
2015-03-30 08:34:31 +00:00
install_requires=['numpy', 'scipy', 'theano'],
extras_require={
'images': ['pil'], # working with images
'CNNs': ['cudnn-python-wrappers'], # working with CNNs
}
2015-03-29 23:06:43 +00:00
)