forked from Vonage/vonage-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 <http://nexmo.com?src=python-client-library>`_.''',
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',
])