from setuptools import setup, find_packages setup(name='maprdb_python_client', version='1.0.0', description='MapR-DB Python Client', url='https://github.com/mapr/maprdb-python-client/', author='MapR, Inc.', keywords='ojai python client mapr maprdb', packages=find_packages(exclude=['test*', 'docs*', 'examples*']), install_requires=['aenum>=2.0.10', 'grpcio>=1.9.1', 'grpcio-tools>=1.9.1', 'ojai-python-api>=1.0', 'python-dateutil>=2.6.1', 'retrying>=1.3.3', 'future>=0.16.0'], python_requires='>=2.7.*', long_description='A simple, lightweight library which provides access to MapR-DB.' ' Client library able to supports all existing OJAI functionality' ' and being absolutely capable with Java OJAI connector,' ' which running under MapR Data Access Service.' )