Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,5 @@ ENV/
# IDE
.idea/
*.un~
.history/
.history/
.vscode
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ This SDK works with Python 2.6+ and Python 3.3+.
To import the Yoti SDK inside your project, simply run the following command from your terminal:

```shell
$ pip install yoti-python-sdk
$ pip install yoti
```

## SDK Project import
Expand Down
2 changes: 1 addition & 1 deletion plugins/django_yoti/requirements.txt
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
2 changes: 1 addition & 1 deletion plugins/django_yoti/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
url='https://github.com/lampkicking/yoti-sdk-server-python/plugins/django_yoti',
author='',
author_email='',
install_requires=['django>=1.8', 'yoti-python-sdk>=0.1.0'],
install_requires=['django>=1.8', 'yoti>=2.0.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
Expand Down
2 changes: 1 addition & 1 deletion plugins/flask_yoti/requirements.txt
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
2 changes: 1 addition & 1 deletion plugins/flask_yoti/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
url='https://github.com/lampkicking/yoti-sdk-server-python/plugins/flask_yoti',
author='',
author_email='',
install_requires=['flask>=0.10', 'yoti-python-sdk>=0.1.0'],
install_requires=['flask>=0.10', 'yoti>=2.0.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
Expand Down
10 changes: 5 additions & 5 deletions setup.py
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='tech@yoti.com',
install_requires=['cryptography>=1.4', 'protobuf>=3.0.0',
Expand All @@ -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',
)