keras/setup.py

14 lines
474 B
Python
Raw Normal View History

from setuptools import setup
from setuptools import find_packages
2015-03-29 23:06:43 +00:00
setup(name = 'Keras',
version = '0.1.0',
description = 'Theano-based Deep Learning library',
author = 'Francois Chollet',
author_email = 'francois.chollet@gmail.com',
url = 'https://github.com/fchollet/keras',
download_url = 'https://github.com/fchollet/keras/tarball/0.1.0',
license = 'MIT',
install_requires = ['theano'],
packages = find_packages(),
)