-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from getyoti/development
Release v2.10.2
- Loading branch information
Showing
15 changed files
with
33 additions
and
905 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ language: python | |
dist: xenial | ||
|
||
git: | ||
depth: false | ||
depth: 3 | ||
|
||
jobs: | ||
allow_failures: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
asn1==2.2.0 | ||
click==6.6 | ||
cryptography>=2.7.0 | ||
cryptography>=2.8.0 | ||
cffi>=1.13.0 | ||
future==0.15.2 | ||
future==0.18.2 | ||
itsdangerous==0.24 | ||
pbr==1.10.0 | ||
protobuf==3.7.0 | ||
protobuf==3.11.3 | ||
pyopenssl==18.0.0 | ||
PyYAML==5.2 # PyYAML 5.3 does not support Python 3.4 | ||
pytz==2018.9 | ||
requests>=2.20.0 | ||
urllib3>=1.24.2 | ||
deprecated==1.2.6 | ||
wheel==0.24.0 | ||
wheel==0.24.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
from setuptools import setup, find_packages | ||
|
||
from yoti_python_sdk import __version__ | ||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
long_description = ( | ||
"This package contains the tools you need to quickly " | ||
|
@@ -10,32 +9,36 @@ | |
"application in a secure and trusted way." | ||
) | ||
|
||
version = {} | ||
with open("yoti_python_sdk/version.py") as fp: | ||
exec(fp.read(), version) | ||
|
||
setup( | ||
name="yoti", | ||
version=__version__, | ||
packages=find_packages(), | ||
version=version["__version__"], | ||
packages=find_packages(include=["yoti_python_sdk", "yoti_python_sdk.*"]), | ||
license="MIT", | ||
description="The Yoti Python SDK, providing API support for Login, Verify (2FA) and Age Verification.", | ||
long_description=long_description, | ||
url="https://github.com/getyoti/yoti-python-sdk", | ||
author="Yoti", | ||
author_email="[email protected]", | ||
install_requires=[ | ||
"deprecated==1.2.6", | ||
"cryptography>=2.2.1", | ||
"protobuf>=3.1.0", | ||
"requests>=2.11.1", | ||
"future>=0.11.0", | ||
"asn1==2.2.0", | ||
"pyopenssl>=18.0.0", | ||
"deprecated==1.2.6", | ||
], | ||
extras_require={ | ||
"examples": [ | ||
"Django>1.11.16", | ||
"Flask>=0.10", | ||
"python-dotenv>=0.7.1", | ||
"django-sslserver>=0.2", | ||
"Werkzeug==0.11.15", | ||
"Werkzeug==0.15.3", | ||
], | ||
"dev": [ | ||
"pre-commit==1.17.0", | ||
|
@@ -46,7 +49,7 @@ | |
"python-coveralls==2.9.3", | ||
"coverage==4.5.4", | ||
"mock==2.0.0", | ||
"virtualenv==15.2", | ||
"virtualenv==20.0.13", | ||
], | ||
}, | ||
classifiers=[ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.