-
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 #6 from getyoti/rename-to-yoti
[SDK-39]: Changed to version 2.0.0, after addition of X-SDK headers
- Loading branch information
Showing
7 changed files
with
12 additions
and
11 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 |
---|---|---|
|
@@ -92,4 +92,5 @@ ENV/ | |
# IDE | ||
.idea/ | ||
*.un~ | ||
.history/ | ||
.history/ | ||
.vscode |
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,2 +1,2 @@ | ||
yoti-python-sdk>=0.1.0 | ||
yoti>=2.0.0 | ||
Django>=1.8 |
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,2 +1,2 @@ | ||
Flask>=0.10 | ||
yoti-python-sdk>=0.1.0 | ||
yoti>=2.0.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,20 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = '1.2.0' | ||
VERSION = '2.0.0' | ||
long_description = 'This package contains the tools you need to quickly ' \ | ||
'integrate your Python back-end with Yoti, so that your ' \ | ||
'users can share their identity details with your ' \ | ||
'application in a secure and trusted way.' | ||
|
||
setup( | ||
name='yoti-python-sdk', | ||
name='yoti', | ||
version=VERSION, | ||
packages=find_packages(), | ||
license='OTHER', | ||
description='Yoti Python SDK for back-end integration.', | ||
description='The Yoti Python SDK, providing API support for Login, Verify (2FA) and Age Verification.', | ||
long_description=long_description, | ||
url='https://github.com/getyoti/python', | ||
url='https://github.com/getyoti/yoti-python-sdk', | ||
author='Yoti', | ||
author_email='[email protected]', | ||
install_requires=['cryptography>=1.4', 'protobuf>=3.0.0', | ||
|
@@ -38,5 +38,5 @@ | |
'Programming Language :: Python :: 3.6', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
keywords='', | ||
keywords='2FA multifactor authentication verification identity login register verify 2Factor', | ||
) |