keras/setup.py

23 lines
564 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=[
'keras',
'keras.layers',
'keras.preprocessing',
'keras.datasets',
'keras.utils',
],
2015-03-30 08:22:47 +00:00
install_requires=['numpy', 'scipy', 'theano']
2015-03-29 23:06:43 +00:00
)