From 2de42dcb60e1ec2abd9cd6722e2786107f40830f Mon Sep 17 00:00:00 2001 From: farizrahman4u Date: Wed, 25 Jan 2017 10:28:36 +0530 Subject: [PATCH] add setup.py --- setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..aad0567 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +from setuptools import setup +from setuptools import find_packages + + +setup(name='keras_contrib', + version='1.2.1', + description='Keras community contributions', + author='Fariz Rahman', + author_email='farizrahman4u@gmail.com', + url='https://github.com/farizrahman4u/keras-contrib', + license='MIT', + install_requires=['keras'], + packages=find_packages())