Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
Merge 4efd7a7 into 01bc00c
Browse files Browse the repository at this point in the history
  • Loading branch information
judy2k committed Nov 14, 2019
2 parents 01bc00c + 4efd7a7 commit 738f44a
Show file tree
Hide file tree
Showing 6 changed files with 520 additions and 90 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Development
* Client.host & Client.api_host must now include the protocol prefix. eg: "api.nexmo.com" is now "https://api.nexmo.com"

# 2.4.0
* Application V2 API added under `Client.application_v2`
* Existing application methods under `Client` are now deprecated.
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import io
import os
import sys

from setuptools import setup, find_packages

INSTALL_REQUIRES = ["requests>=2.4.2", "PyJWT[crypto]>=1.6.4", "pytz>=2018.5"]
if sys.version_info < (3, 4):
INSTALL_REQUIRES.append("enum34>=1.1.6")

with io.open(
os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8"
Expand All @@ -22,7 +26,7 @@
packages=find_packages(where="src"),
package_dir={"": "src"},
platforms=["any"],
install_requires=["requests>=2.4.2", "PyJWT[crypto]>=1.6.4", "pytz>=2018.5"],
install_requires=INSTALL_REQUIRES,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
tests_require=["cryptography>=2.3.1"],
classifiers=[
Expand Down

0 comments on commit 738f44a

Please sign in to comment.