forked from keras-team/keras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 773 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
from setuptools import find_packages
setup(name='Keras',
version='1.2.2',
description='Deep Learning for Python',
author='Francois Chollet',
author_email='francois.chollet@gmail.com',
url='https://github.com/fchollet/keras',
download_url='https://github.com/fchollet/keras/tarball/1.2.2',
license='MIT',
install_requires=['theano', 'pyyaml', 'six'],
extras_require={
'h5py': ['h5py'],
'visualize': ['pydot-ng'],
'tests': ['pytest',
'pytest-cov',
'pytest-pep8',
'pytest-xdist',
'python-coveralls',
'coverage==3.7.1'],
},
packages=find_packages())