keras/setup.py

22 lines
660 B
Python
Raw Normal View History

from setuptools import setup
from setuptools import find_packages
2015-03-29 23:06:43 +00:00
2015-07-22 13:47:07 +00:00
2015-07-22 01:31:49 +00:00
setup(name='Keras',
2017-03-16 18:40:14 +00:00
version='2.0.1',
2016-02-09 21:57:16 +00:00
description='Deep Learning for Python',
2015-07-22 01:31:49 +00:00
author='Francois Chollet',
author_email='francois.chollet@gmail.com',
url='https://github.com/fchollet/keras',
2017-03-16 18:40:14 +00:00
download_url='https://github.com/fchollet/keras/tarball/2.0.1',
2015-07-22 01:31:49 +00:00
license='MIT',
install_requires=['theano', 'pyyaml', 'six'],
2015-10-11 00:51:59 +00:00
extras_require={
'h5py': ['h5py'],
2016-08-26 21:30:25 +00:00
'visualize': ['pydot-ng'],
'tests': ['pytest',
'pytest-pep8',
2017-03-14 15:33:44 +00:00
'pytest-xdist'],
},
2015-07-22 01:31:49 +00:00
packages=find_packages())