From 48c840bda0f295fba6788fa35460f9118cfbb3be Mon Sep 17 00:00:00 2001 From: Andrew Hundt Date: Mon, 25 Sep 2017 13:27:02 -0400 Subject: [PATCH] setup.py update to match keras --- setup.py | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index aad0567..3c17537 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,32 @@ from setuptools import find_packages setup(name='keras_contrib', - version='1.2.1', - description='Keras community contributions', + version='2.0.8', + description='Keras Deep Learning for Python, Community Contributions', author='Fariz Rahman', author_email='farizrahman4u@gmail.com', url='https://github.com/farizrahman4u/keras-contrib', license='MIT', install_requires=['keras'], + extras_require={ + 'h5py': ['h5py'], + 'visualize': ['pydot>=1.2.0'], + 'tests': ['pytest', + 'pytest-pep8', + 'pytest-xdist', + 'pytest-cov'], + }, + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Intended Audience :: Education', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules' + ], packages=find_packages())