Skip to content

Commit 6b6859b

Browse files
authored
Merge pull request #6 from getyoti/rename-to-yoti
[SDK-39]: Changed to version 2.0.0, after addition of X-SDK headers
2 parents 00024da + df4ef9d commit 6b6859b

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,5 @@ ENV/
9292
# IDE
9393
.idea/
9494
*.un~
95-
.history/
95+
.history/
96+
.vscode

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ This SDK works with Python 2.6+ and Python 3.3+.
7676
To import the Yoti SDK inside your project, simply run the following command from your terminal:
7777

7878
```shell
79-
$ pip install yoti-python-sdk
79+
$ pip install yoti
8080
```
8181

8282
## SDK Project import
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
yoti-python-sdk>=0.1.0
1+
yoti>=2.0.0
22
Django>=1.8

plugins/django_yoti/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
url='https://github.com/lampkicking/yoti-sdk-server-python/plugins/django_yoti',
1616
author='',
1717
author_email='',
18-
install_requires=['django>=1.8', 'yoti-python-sdk>=0.1.0'],
18+
install_requires=['django>=1.8', 'yoti>=2.0.0'],
1919
classifiers=[
2020
'Development Status :: 3 - Alpha',
2121
'License :: OSI Approved :: MIT License',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Flask>=0.10
2-
yoti-python-sdk>=0.1.0
2+
yoti>=2.0.0

plugins/flask_yoti/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
url='https://github.com/lampkicking/yoti-sdk-server-python/plugins/flask_yoti',
1515
author='',
1616
author_email='',
17-
install_requires=['flask>=0.10', 'yoti-python-sdk>=0.1.0'],
17+
install_requires=['flask>=0.10', 'yoti>=2.0.0'],
1818
classifiers=[
1919
'Development Status :: 3 - Alpha',
2020
'License :: OSI Approved :: MIT License',

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# -*- coding: utf-8 -*-
22
from setuptools import setup, find_packages
33

4-
VERSION = '1.2.0'
4+
VERSION = '2.0.0'
55
long_description = 'This package contains the tools you need to quickly ' \
66
'integrate your Python back-end with Yoti, so that your ' \
77
'users can share their identity details with your ' \
88
'application in a secure and trusted way.'
99

1010
setup(
11-
name='yoti-python-sdk',
11+
name='yoti',
1212
version=VERSION,
1313
packages=find_packages(),
1414
license='OTHER',
15-
description='Yoti Python SDK for back-end integration.',
15+
description='The Yoti Python SDK, providing API support for Login, Verify (2FA) and Age Verification.',
1616
long_description=long_description,
17-
url='https://github.com/getyoti/python',
17+
url='https://github.com/getyoti/yoti-python-sdk',
1818
author='Yoti',
1919
author_email='[email protected]',
2020
install_requires=['cryptography>=1.4', 'protobuf>=3.0.0',
@@ -38,5 +38,5 @@
3838
'Programming Language :: Python :: 3.6',
3939
'Topic :: Software Development :: Libraries :: Python Modules',
4040
],
41-
keywords='',
41+
keywords='2FA multifactor authentication verification identity login register verify 2Factor',
4242
)

0 commit comments

Comments
 (0)