import re from setuptools import setup, find_packages setup( name='nexmo', version='2.0.0-dev', description='Nexmo Client Library for Python', long_description='''This is the Python client library for Nexmo's API. To use it you'll need a Nexmo account. Sign up `for free at nexmo.com `_.''', url='http://github.com/Nexmo/nexmo-python', author='Nexmo Developer Relations', author_email='devrel@nexmo.com', license='MIT', packages=find_packages(where="src"), package_dir={"": "src"}, platforms=['any'], install_requires=[ 'PyJWT == 1.5.3', # Pinning version to ensure compatibility with cryptography version 'cryptography == 2.1.4', # Pinning version to ensure binary packages are available 'attrs ~= 17.4.0', 'marshmallow == 3.0.0b8', # Pinning version until out of beta 'aiohttp ~= 2.3.10', 'requests ~= 2.18.4', ], classifiers=[ 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ])